mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
mpegaudiodec_template: fix leaking fdsp for mp3on4float
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
This commit is contained in:
parent
a1e83a2f90
commit
783b350b2e
@ -1828,6 +1828,9 @@ static av_cold int decode_close_mp3on4(AVCodecContext * avctx)
|
||||
MP3On4DecodeContext *s = avctx->priv_data;
|
||||
int i;
|
||||
|
||||
if (s->mp3decctx[0])
|
||||
av_freep(&s->mp3decctx[0]->fdsp);
|
||||
|
||||
for (i = 0; i < s->frames; i++)
|
||||
av_freep(&s->mp3decctx[i]);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user