[Ffmpeg-cvslog] r6085 - trunk/libavcodec/mpegaudiodec.c

michael subversion
Fri Aug 25 15:36:27 CEST 2006


Author: michael
Date: Fri Aug 25 15:36:27 2006
New Revision: 6085

Modified:
   trunk/libavcodec/mpegaudiodec.c

Log:
avoid reading exponent twice


Modified: trunk/libavcodec/mpegaudiodec.c
==============================================================================
--- trunk/libavcodec/mpegaudiodec.c	(original)
+++ trunk/libavcodec/mpegaudiodec.c	Fri Aug 25 15:36:27 2006
@@ -1703,6 +1703,8 @@
 
         /* read huffcode and compute each couple */
         for(;j>0;j--) {
+            int exponent;
+
             if (get_bits_count(&s->gb) >= end_pos)
                 break;
             y = get_vlc2(&s->gb, vlc->table, 7, 3);
@@ -1716,20 +1718,22 @@
 
             x = y >> 4;
             y = y & 0x0f;
+            exponent= exponents[s_index];
 
             dprintf("region=%d n=%d x=%d y=%d exp=%d\n",
-                    i, g->region_size[i] - j, x, y, exponents[s_index]);
+                    i, g->region_size[i] - j, x, y, exponent);
             if (x) {
 #if 0
                 if (x == 15)
                     x += get_bitsz(&s->gb, linbits);
-                v = l3_unscale(x, exponents[s_index]);
+                v = l3_unscale(x, exponent);
 #else
                 if (x < 15){
-                    v = expval_table[ exponents[s_index] + 400 ][ x ];
+                    v = expval_table[ exponent + 400 ][ x ];
+//                      v = expval_table[ (exponent&3) + 400 ][ x ] >> FFMIN(0 - (exponent>>2), 31);
                 }else{
                     x += get_bitsz(&s->gb, linbits);
-                    v = l3_unscale(x, exponents[s_index]);
+                    v = l3_unscale(x, exponent);
                 }
 #endif
                 if (get_bits1(&s->gb))
@@ -1742,13 +1746,13 @@
 #if 0
                 if (y == 15)
                     y += get_bitsz(&s->gb, linbits);
-                v = l3_unscale(y, exponents[s_index]);
+                v = l3_unscale(y, exponent);
 #else
                 if (y < 15){
-                    v = expval_table[ exponents[s_index] + 400 ][ y ];
+                    v = expval_table[ exponent + 400 ][ y ];
                 }else{
                     y += get_bitsz(&s->gb, linbits);
-                    v = l3_unscale(y, exponents[s_index]);
+                    v = l3_unscale(y, exponent);
                 }
 #endif
                 if (get_bits1(&s->gb))




More information about the ffmpeg-cvslog mailing list