[FFmpeg-cvslog] r18887 - in trunk/libavcodec: ac3dec.c ac3dec_data.c ac3dec_data.h eac3dec.c

jbr subversion
Thu May 21 02:09:24 CEST 2009


Author: jbr
Date: Thu May 21 02:09:23 2009
New Revision: 18887

Log:
eac3dec: revert commit r18860.  keep the AHT IDCT 24-bit.  will make AHT GAQ
dequantization 24-bit in a separate commit.

Replaced:
   trunk/libavcodec/ac3dec_data.c
      - copied unchanged from r18859, trunk/libavcodec/ac3dec_data.c
   trunk/libavcodec/ac3dec_data.h
      - copied unchanged from r18859, trunk/libavcodec/ac3dec_data.h
   trunk/libavcodec/eac3dec.c
      - copied unchanged from r18859, trunk/libavcodec/eac3dec.c
Modified:
   trunk/libavcodec/ac3dec.c

Modified: trunk/libavcodec/ac3dec.c
==============================================================================
--- trunk/libavcodec/ac3dec.c	Wed May 20 20:49:55 2009	(r18886)
+++ trunk/libavcodec/ac3dec.c	Thu May 21 02:09:23 2009	(r18887)
@@ -562,7 +562,7 @@ static void decode_transform_coeffs_ch(A
         if (!blk)
             ff_eac3_decode_transform_coeffs_aht_ch(s, ch);
         for (bin = s->start_freq[ch]; bin < s->end_freq[ch]; bin++) {
-            s->fixed_coeffs[ch][bin] = (s->pre_mantissa[ch][bin][blk] << 8) >> s->dexps[ch][bin];
+            s->fixed_coeffs[ch][bin] = s->pre_mantissa[ch][bin][blk] >> s->dexps[ch][bin];
         }
     }
 }



More information about the ffmpeg-cvslog mailing list