# HG changeset patch # User alexc # Date 1234541240 0 # Node ID 70ea65c175973062f8f5e69bdd30c014618c0c51 # Parent 01271e32d74e79946c067172c30ff43521a178a8 Re-indent after last commit. diff -r 01271e32d74e -r 70ea65c17597 aac.c --- a/aac.c Fri Feb 13 16:06:22 2009 +0000 +++ b/aac.c Fri Feb 13 16:07:20 2009 +0000 @@ -1168,26 +1168,26 @@ if (coup->coupling_point == AFTER_IMDCT) { coup->gain[c][0] = gain_cache; } else { - 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; - if (t) { - int s = 1; - t = gain += t; - if (sign) { - s -= 2 * (t & 0x1); - t >>= 1; + 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; + if (t) { + int s = 1; + t = gain += t; + if (sign) { + s -= 2 * (t & 0x1); + t >>= 1; + } + gain_cache = pow(scale, -t) * s; } - gain_cache = pow(scale, -t) * s; } + coup->gain[c][idx] = gain_cache; } - coup->gain[c][idx] = gain_cache; } } } - } } return 0; }