diff atrac3.c @ 9667:6f80791c9195 libavcodec

Indent
author banan
date Sun, 17 May 2009 16:13:03 +0000
parents c80df3181479
children 29cedcc646fe
line wrap: on
line diff
--- a/atrac3.c	Sun May 17 16:12:07 2009 +0000
+++ b/atrac3.c	Sun May 17 16:13:03 2009 +0000
@@ -1026,13 +1026,13 @@
 
     /* Initialize the VLC tables. */
     if (!vlcs_initialized) {
-    for (i=0 ; i<7 ; i++) {
-        spectral_coeff_tab[i].table = &atrac3_vlc_table[atrac3_vlc_offs[i]];
-        spectral_coeff_tab[i].table_allocated = atrac3_vlc_offs[i + 1] - atrac3_vlc_offs[i];
-        init_vlc (&spectral_coeff_tab[i], 9, huff_tab_sizes[i],
-            huff_bits[i], 1, 1,
-            huff_codes[i], 1, 1, INIT_VLC_USE_NEW_STATIC);
-    }
+        for (i=0 ; i<7 ; i++) {
+            spectral_coeff_tab[i].table = &atrac3_vlc_table[atrac3_vlc_offs[i]];
+            spectral_coeff_tab[i].table_allocated = atrac3_vlc_offs[i + 1] - atrac3_vlc_offs[i];
+            init_vlc (&spectral_coeff_tab[i], 9, huff_tab_sizes[i],
+                huff_bits[i], 1, 1,
+                huff_codes[i], 1, 1, INIT_VLC_USE_NEW_STATIC);
+        }
         vlcs_initialized = 1;
     }