From 6231d0983b1e773c5244f84b0fd2b6a26c01eea7 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Sat, 23 Jan 2010 18:04:09 +0000 Subject: 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(+) (limited to 'libavcodec/mdec.c') diff --git a/libavcodec/mdec.c b/libavcodec/mdec.c index fa9661e19f..9ae2258583 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; -- cgit v1.2.3