[FFmpeg-cvslog] r15363 - trunk/libavcodec/aac.c
superdump
subversion
Thu Sep 18 17:48:38 CEST 2008
Author: superdump
Date: Thu Sep 18 17:48:37 2008
New Revision: 15363
Log:
Cosmetics: missing brackets
Modified:
trunk/libavcodec/aac.c
Modified: trunk/libavcodec/aac.c
==============================================================================
--- trunk/libavcodec/aac.c (original)
+++ trunk/libavcodec/aac.c Thu Sep 18 17:48:37 2008
@@ -993,8 +993,8 @@ static int decode_cce(AACContext * ac, G
gain = cge ? get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60: 0;
gain_cache = pow(scale, gain);
}
- for (g = 0; g < sce->ics.num_window_groups; g++)
- for (sfb = 0; sfb < sce->ics.max_sfb; sfb++, idx++)
+ for (g = 0; g < sce->ics.num_window_groups; g++) {
+ for (sfb = 0; sfb < sce->ics.max_sfb; sfb++, idx++) {
if (sce->band_type[idx] != ZERO_BT) {
if (!cge) {
int t = get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60;
@@ -1010,6 +1010,8 @@ static int decode_cce(AACContext * ac, G
}
coup->gain[c][idx] = gain_cache;
}
+ }
+ }
}
return 0;
}
More information about the ffmpeg-cvslog
mailing list