changeset 5477:ec1f268792cd libavcodec

cosmetics: indentation
author jbr
date Sat, 04 Aug 2007 20:32:57 +0000
parents e50f0d583a36
children 41103dc22ad5
files ac3dec.c
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/ac3dec.c	Sat Aug 04 19:19:48 2007 +0000
+++ b/ac3dec.c	Sat Aug 04 20:32:57 2007 +0000
@@ -427,11 +427,11 @@
     uint8_t *bap;
     float *coeffs;
 
-        exps = ctx->dexps[ch_index];
-        bap = ctx->bap[ch_index];
-        coeffs = ctx->transform_coeffs[ch_index];
-        start = ctx->startmant[ch_index];
-        end = ctx->endmant[ch_index];
+    exps = ctx->dexps[ch_index];
+    bap = ctx->bap[ch_index];
+    coeffs = ctx->transform_coeffs[ch_index];
+    start = ctx->startmant[ch_index];
+    end = ctx->endmant[ch_index];
 
 
     for (i = start; i < end; i++) {
@@ -813,12 +813,12 @@
             else if(ch == ctx->lfe_ch)
                 ngrps = 2;
             else
-            ngrps = (ctx->endmant[ch] + grpsize - 4) / grpsize;
+                ngrps = (ctx->endmant[ch] + grpsize - 4) / grpsize;
             ctx->dexps[ch][0] = get_bits(gb, 4) << !ch;
             decode_exponents(gb, ctx->expstr[ch], ngrps, ctx->dexps[ch][0],
                              &ctx->dexps[ch][ctx->startmant[ch]+!!ch]);
             if(ch != CPL_CH && ch != ctx->lfe_ch)
-            skip_bits(gb, 2); /* skip gainrng */
+                skip_bits(gb, 2); /* skip gainrng */
         }
     }