]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Re-indent after last commit.
authoralexc <alexc@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 13 Feb 2009 16:07:20 +0000 (16:07 +0000)
committeralexc <alexc@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 13 Feb 2009 16:07:20 +0000 (16:07 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17211 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/aac.c

index c0673bf13331576028c6d37d417c107c4e097e6e..311dd69cc59590e18e1730f36e7ae9e954f5400d 100644 (file)
@@ -1168,26 +1168,26 @@ static int decode_cce(AACContext * ac, GetBitContext * gb, ChannelElement * che)
         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;
 }