1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avcodec/atrac9dec: Replace av_free() by av_freep() in close function

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt 2020-11-05 03:51:50 +01:00
parent 659c61ba7c
commit 6612d6d62e

View File

@ -838,7 +838,7 @@ static av_cold int atrac9_decode_close(AVCodecContext *avctx)
ff_free_vlc(&s->coeff_vlc[i][j][k]); ff_free_vlc(&s->coeff_vlc[i][j][k]);
ff_mdct_end(&s->imdct); ff_mdct_end(&s->imdct);
av_free(s->fdsp); av_freep(&s->fdsp);
return 0; return 0;
} }