From 6231d0983b1e773c5244f84b0fd2b6a26c01eea7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Sat, 23 Jan 2010 18:04:09 +0000 Subject: [PATCH] Release buffer when the codec is closed. Originally committed as revision 21405 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/mdec.c b/libavcodec/mdec.c index fa9661e19..9ae225858 100644 --- a/libavcodec/mdec.c +++ b/libavcodec/mdec.c @@ -239,6 +239,8 @@ static av_cold int decode_init(AVCodecContext *avctx){ static av_cold int decode_end(AVCodecContext *avctx){ MDECContext * const a = avctx->priv_data; + if(a->picture.data[0]) + avctx->release_buffer(avctx, &a->picture); av_freep(&a->bitstream_buffer); av_freep(&a->picture.qscale_table); a->bitstream_buffer_size=0; -- 2.11.0