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:
Andreas Cadhalpun 2017-02-16 00:37:51 +01:00
parent a1e83a2f90
commit 783b350b2e
1 changed files with 3 additions and 0 deletions

View File

@ -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]);