[FFmpeg-cvslog] r18866 - trunk/libavcodec/atrac3.c
banan
subversion
Sun May 17 18:13:03 CEST 2009
Author: banan
Date: Sun May 17 18:13:03 2009
New Revision: 18866
Log:
Indent
Modified:
trunk/libavcodec/atrac3.c
Modified: trunk/libavcodec/atrac3.c
==============================================================================
--- trunk/libavcodec/atrac3.c Sun May 17 18:12:07 2009 (r18865)
+++ trunk/libavcodec/atrac3.c Sun May 17 18:13:03 2009 (r18866)
@@ -1026,13 +1026,13 @@ static av_cold int atrac3_decode_init(AV
/* 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;
}
More information about the ffmpeg-cvslog
mailing list