changeset 7851:a6afd0f2a849 libavcodec

Reindent after last commit
author superdump
date Fri, 12 Sep 2008 14:33:35 +0000
parents 77030651ddd0
children 0d60b8b7f30b
files aac.c
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/aac.c	Fri Sep 12 14:32:49 2008 +0000
+++ b/aac.c	Fri Sep 12 14:33:35 2008 +0000
@@ -630,13 +630,13 @@
                     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)];
                 }
             }
         }