[FFmpeg-cvslog] r15099 - trunk/libavcodec/eac3dec.c

jbr subversion
Sun Aug 31 04:58:21 CEST 2008


Author: jbr
Date: Sun Aug 31 04:58:21 2008
New Revision: 15099

Log:
use correct table name

Modified:
   trunk/libavcodec/eac3dec.c

Modified: trunk/libavcodec/eac3dec.c
==============================================================================
--- trunk/libavcodec/eac3dec.c	(original)
+++ trunk/libavcodec/eac3dec.c	Sun Aug 31 04:58:21 2008
@@ -131,7 +131,7 @@ void ff_eac3_decode_transform_coeffs_aht
             /* 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 */




More information about the ffmpeg-cvslog mailing list