[SCM] libav/experimental: Fix nellymoser decode_tag return value, patch by Stefano Sabatini

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:09:28 UTC 2013


The following commit has been merged in the experimental branch:
commit 5b0b5ecf60901e953071e8349ff79e075c2592c3
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date:   Wed Nov 14 08:22:15 2007 +0000

    Fix nellymoser decode_tag return value, patch by Stefano Sabatini
    
    Originally committed as revision 11018 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c
index a9f04a1..7679f25 100644
--- a/libavcodec/nellymoserdec.c
+++ b/libavcodec/nellymoserdec.c
@@ -390,7 +390,7 @@ static int decode_tag(AVCodecContext * avctx,
         *data_size += NELLY_SAMPLES*sizeof(int16_t);
     }
 
-    return blocks*NELLY_SAMPLES*sizeof(int16_t);
+    return buf_size;
 }
 
 static int decode_end(AVCodecContext * avctx) {

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list