[FFmpeg-cvslog] indeo2: remove unnecessary release_buffer() call
Stefano Sabatini
git at videolan.org
Wed Apr 27 12:11:09 CEST 2011
ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Tue Apr 26 13:50:08 2011 +0200| [fd37eac4958a2544599d1b0fce1b153ebd7cd7da] | committer: Stefano Sabatini
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.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fd37eac4958a2544599d1b0fce1b153ebd7cd7da
---
libavcodec/indeo2.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/libavcodec/indeo2.c b/libavcodec/indeo2.c
index 68c6246..c4d410f 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)) {
More information about the ffmpeg-cvslog
mailing list