From 0fbb0185b999169a265e5fac2145483dacd73e74 Mon Sep 17 00:00:00 2001 From: Reimar Döffinger Date: Tue, 13 Oct 2009 18:31:22 +0000 Subject: Call release_buffer on close for v210dec and v210x Originally committed as revision 20228 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/v210dec.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavcodec/v210dec.c') diff --git a/libavcodec/v210dec.c b/libavcodec/v210dec.c index 0d71b5004f..08c954d88e 100644 --- a/libavcodec/v210dec.c +++ b/libavcodec/v210dec.c @@ -114,6 +114,9 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, static av_cold int decode_close(AVCodecContext *avctx) { + AVFrame *pic = avctx->coded_frame; + if (pic->data[0]) + avctx->release_buffer(avctx, pic); av_freep(&avctx->coded_frame); return 0; -- cgit v1.2.3