]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Reindent after last commit
authorsuperdump <superdump@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 12 Sep 2008 14:33:35 +0000 (14:33 +0000)
committersuperdump <superdump@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Fri, 12 Sep 2008 14:33:35 +0000 (14:33 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15304 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/aac.c

index 18c2cbc6d99534115e94213600f8ab3561953c4b..b924e7bd51f2b544073728c74bed1b947261c6d1 100644 (file)
@@ -630,13 +630,13 @@ static int decode_tns(AACContext * ac, TemporalNoiseShaping * tns,
                     return -1;
                 }
                 if (tns->order[w][filt]) {
-                tns->direction[w][filt] = get_bits1(gb);
-                coef_compress = get_bits1(gb);
-                coef_len = coef_res + 3 - coef_compress;
-                tmp2_idx = 2*coef_compress + coef_res;
+                    tns->direction[w][filt] = get_bits1(gb);
+                    coef_compress = get_bits1(gb);
+                    coef_len = coef_res + 3 - coef_compress;
+                    tmp2_idx = 2*coef_compress + coef_res;
 
-                for (i = 0; i < tns->order[w][filt]; i++)
-                    tns->coef[w][filt][i] = tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)];
+                    for (i = 0; i < tns->order[w][filt]; i++)
+                        tns->coef[w][filt][i] = tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)];
                 }
             }
         }