diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-05-06 20:43:37 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-05-06 20:43:37 +0000 |
commit | e20c40697cb6b40804acac9a92005779382c6e7e (patch) | |
tree | 16ad773d668050a6c14a85e6ad4abcc7cbea6def /libavcodec/indeo3.c | |
parent | 61873c4a4436f2c516e14d6a00a2b856fa93f818 (diff) | |
download | ffmpeg-e20c40697cb6b40804acac9a92005779382c6e7e.tar.gz |
release buffer cleanup
Originally committed as revision 1839 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo3.c')
-rw-r--r-- | libavcodec/indeo3.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index 133b9513cb..327b24d0da 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -1056,6 +1056,9 @@ static int indeo3_decode_frame(AVCodecContext *avctx, iv_decode_frame(s, buf, buf_size); + if(s->frame.data[0]) + avctx->release_buffer(avctx, &s->frame); + s->frame.reference = 0; if(avctx->get_buffer(avctx, &s->frame) < 0) { fprintf(stderr, "get_buffer() failed\n"); @@ -1089,8 +1092,6 @@ static int indeo3_decode_frame(AVCodecContext *avctx, *data_size=sizeof(AVFrame); *(AVFrame*)data= s->frame; - avctx->release_buffer(avctx, &s->frame); - return buf_size; } |