[SCM] libav/experimental: use correct table name

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:29:02 UTC 2013


The following commit has been merged in the experimental branch:
commit 9cf8ebe38a7354e4a6a91f7461c51f6b3a5aa42a
Author: Justin Ruggles <justin.ruggles at gmail.com>
Date:   Sun Aug 31 02:58:21 2008 +0000

    use correct table name
    
    Originally committed as revision 15099 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/eac3dec.c b/libavcodec/eac3dec.c
index 836cb8e..7f43e63 100644
--- a/libavcodec/eac3dec.c
+++ b/libavcodec/eac3dec.c
@@ -131,7 +131,7 @@ void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch)
             /* Vector Quantization */
             int v = get_bits(gbc, bits);
             for (blk = 0; blk < 6; blk++) {
-                s->pre_mantissa[ch][bin][blk] = ff_eac3_vq_hebap[hebap][v][blk] << 8;
+                s->pre_mantissa[ch][bin][blk] = ff_eac3_mantissa_vq[hebap][v][blk] << 8;
             }
         } else {
             /* Gain Adaptive Quantization */

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list