From 5b225466ea808bc5e677150b2e2cdbf5a8f88ce6 Mon Sep 17 00:00:00 2001 From: Mike Melanson Date: Mon, 28 Mar 2005 20:40:21 +0000 Subject: [PATCH] free that last frame Originally committed as revision 4095 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/qpeg.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavcodec/qpeg.c b/libavcodec/qpeg.c index fa945858c2..a2d7e4acc0 100644 --- a/libavcodec/qpeg.c +++ b/libavcodec/qpeg.c @@ -280,6 +280,10 @@ static int decode_init(AVCodecContext *avctx){ static int decode_end(AVCodecContext *avctx){ QpegContext * const a = avctx->priv_data; + AVFrame * const p= (AVFrame*)&a->pic; + + if(p->data[0]) + avctx->release_buffer(avctx, p); av_free(a->refdata); return 0;