[FFmpeg-devel] [PATCH 17/40] avcodec/alacenc: Remove redundant code to free extradata

Andreas Rheinhardt andreas.rheinhardt at gmail.com
Mon Sep 14 08:27:24 EEST 2020


It is already freed generically for encoders.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
---
 libavcodec/alacenc.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/libavcodec/alacenc.c b/libavcodec/alacenc.c
index 804cc7b17b..fc5fa270e6 100644
--- a/libavcodec/alacenc.c
+++ b/libavcodec/alacenc.c
@@ -498,8 +498,6 @@ static av_cold int alac_encode_close(AVCodecContext *avctx)
 {
     AlacEncodeContext *s = avctx->priv_data;
     ff_lpc_end(&s->lpc_ctx);
-    av_freep(&avctx->extradata);
-    avctx->extradata_size = 0;
     return 0;
 }
 
-- 
2.25.1



More information about the ffmpeg-devel mailing list