From fd37eac4958a2544599d1b0fce1b153ebd7cd7da Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Tue, 26 Apr 2011 13:50:08 +0200 Subject: [PATCH] indeo2: remove unnecessary release_buffer() call This was preventing reget_buffer() to return a buffer with the same data, which was resulting in playback artifacts. Fix trac issue #116. --- libavcodec/indeo2.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavcodec/indeo2.c b/libavcodec/indeo2.c index 68c6246f89..c4d410faf5 100644 --- a/libavcodec/indeo2.c +++ b/libavcodec/indeo2.c @@ -146,9 +146,6 @@ static int ir2_decode_frame(AVCodecContext *avctx, AVFrame * const p= (AVFrame*)&s->picture; int start; - if(p->data[0]) - avctx->release_buffer(avctx, p); - p->reference = 1; p->buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE; if (avctx->reget_buffer(avctx, p)) {