]> git.sesse.net Git - ffmpeg/commitdiff
smacker: remove unnecessary call to avctx->release_buffer in decode_frame()
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Tue, 26 Apr 2011 09:37:36 +0000 (11:37 +0200)
committerRonald S. Bultje <rsbultje@gmail.com>
Wed, 27 Apr 2011 14:41:59 +0000 (07:41 -0700)
The release_buffer was cleaning the provided frame, thus causing the
successive call to avctx->reget_buffer() to allocate a new frame.  In
case the returned frame was not the same one previously returned but a
new one with different data, it resulted in artifacts.

Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
libavcodec/smacker.c

index 3a97b720a5aac8b7ec3cc2df264be96da507b3ef..aef5e2502b3792c8afac6472388ad371230cc87a 100644 (file)
@@ -360,8 +360,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
 
     if(buf_size <= 769)
         return 0;
-    if(smk->pic.data[0])
-            avctx->release_buffer(avctx, &smk->pic);
 
     smk->pic.reference = 1;
     smk->pic.buffer_hints = FF_BUFFER_HINTS_VALID | FF_BUFFER_HINTS_PRESERVE | FF_BUFFER_HINTS_REUSABLE;