[FFmpeg-cvslog] r20040 - trunk/libavcodec/ac3.c

jbr subversion
Sun Sep 27 06:46:57 CEST 2009


Author: jbr
Date: Sun Sep 27 06:46:56 2009
New Revision: 20040

Log:
cosmetics: Rename some variables to be more descriptive of their use. Do some 
pretty-printing as well.

Modified:
   trunk/libavcodec/ac3.c

Modified: trunk/libavcodec/ac3.c
==============================================================================
--- trunk/libavcodec/ac3.c	Sun Sep 27 06:41:05 2009	(r20039)
+++ trunk/libavcodec/ac3.c	Sun Sep 27 06:46:56 2009	(r20040)
@@ -98,7 +98,7 @@ static inline int calc_lowcomp(int a, in
 void ff_ac3_bit_alloc_calc_psd(int8_t *exp, int start, int end, int16_t *psd,
                                int16_t *band_psd)
 {
-    int bin, j, k;
+    int bin, band;
 
     /* exponent mapping to PSD */
     for(bin=start;bin<end;bin++) {
@@ -106,19 +106,19 @@ void ff_ac3_bit_alloc_calc_psd(int8_t *e
     }
 
     /* PSD integration */
-    j=start;
-    k=bin_to_band_tab[start];
+    bin  = start;
+    band = bin_to_band_tab[start];
     do {
-        int v = psd[j++];
-        int end1 = FFMIN(band_start_tab[k+1], end);
-        for (; j < end1; j++) {
+        int v = psd[bin++];
+        int band_end = FFMIN(band_start_tab[band+1], end);
+        for (; bin < band_end; bin++) {
             /* logadd */
-            int adr = FFMIN(FFABS(v - psd[j]) >> 1, 255);
-            v = FFMAX(v, psd[j]) + ff_ac3_log_add_tab[adr];
+            int adr = FFMIN(FFABS(v - psd[bin]) >> 1, 255);
+            v = FFMAX(v, psd[bin]) + ff_ac3_log_add_tab[adr];
         }
-        band_psd[k]=v;
-        k++;
-    } while (end > band_start_tab[k]);
+        band_psd[band] = v;
+        band++;
+    } while (end > band_start_tab[band]);
 }
 
 int ff_ac3_bit_alloc_calc_mask(AC3BitAllocParameters *s, int16_t *band_psd,



More information about the ffmpeg-cvslog mailing list