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

jbr subversion
Sun Sep 27 07:48:03 CEST 2009


Author: jbr
Date: Sun Sep 27 07:48:03 2009
New Revision: 20046

Log:
Cosmetics: Rename some variables to be more descriptive of their use.

Modified:
   trunk/libavcodec/ac3.c

Modified: trunk/libavcodec/ac3.c
==============================================================================
--- trunk/libavcodec/ac3.c	Sun Sep 27 07:39:57 2009	(r20045)
+++ trunk/libavcodec/ac3.c	Sun Sep 27 07:48:03 2009	(r20046)
@@ -268,16 +268,14 @@ void ac3_parametric_bit_allocation(AC3Bi
 av_cold void ac3_common_init(void)
 {
 #if !CONFIG_HARDCODED_TABLES
-    int i, k, l;
     /* compute bndtab and masktab from bandsz */
-    k = 0;
-    l = 0;
-    for (i = 0; i < 50; i++) {
-        band_start_tab[i] = k;
-        l = k + ff_ac3_critical_band_size_tab[i];
-        while (k < l)
-            bin_to_band_tab[k++] = i;
+    int bin = 0, band;
+    for (band = 0; band < 50; band++) {
+        int band_end = bin + ff_ac3_critical_band_size_tab[band];
+        band_start_tab[band] = bin;
+        while (bin < band_end)
+            bin_to_band_tab[bin++] = band;
     }
-    band_start_tab[50] = k;
+    band_start_tab[50] = bin;
 #endif /* !CONFIG_HARDCODED_TABLES */
 }



More information about the ffmpeg-cvslog mailing list