[SCM] libav/experimental: dcadec: Delete redundant init_get_bits call

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Aug 10 16:02:50 UTC 2014


The following commit has been merged in the experimental branch:
commit b3d905b702dcdda9e3ae2bcb7b5580ca77a96ab7
Author: Niels Möller <nisse at lysator.liu.se>
Date:   Mon Apr 14 10:26:57 2014 +0200

    dcadec: Delete redundant init_get_bits call
    
    No initialization is needed in dca_decode_frame, because the next
    thing it does is calling dca_parse_frame_header, which takes care of
    the needed initialization.
    
    Signed-off-by: Luca Barbato <lu_zero at gentoo.org>

diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c
index 94e79d2..c8877d6 100644
--- a/libavcodec/dcadec.c
+++ b/libavcodec/dcadec.c
@@ -1724,7 +1724,6 @@ static int dca_decode_frame(AVCodecContext *avctx, void *data,
         return AVERROR_INVALIDDATA;
     }
 
-    init_get_bits(&s->gb, s->dca_buffer, s->dca_buffer_size * 8);
     if ((ret = dca_parse_frame_header(s)) < 0) {
         //seems like the frame is corrupt, try with the next one
         return ret;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list