# HG changeset patch # User jbr # Date 1186259577 0 # Node ID ec1f268792cdc366827944c49423b4a928079845 # Parent e50f0d583a36c10b9aca2a93ae82539cb4942a0a cosmetics: indentation diff -r e50f0d583a36 -r ec1f268792cd ac3dec.c --- 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 */ } }