diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2007-08-04 20:32:57 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2007-08-04 20:32:57 +0000 |
commit | 775369e028e59523cd8e52df2c4aef6e56a259b4 (patch) | |
tree | 93d97c36c3f963e80f970a4a52d46a652d296e1e | |
parent | 7b4076a777e7db6c67ae3a0a0213176be159fd5c (diff) | |
download | ffmpeg-775369e028e59523cd8e52df2c4aef6e56a259b4.tar.gz |
cosmetics: indentation
Originally committed as revision 9911 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ac3dec.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index be3da8f644..a85c135afc 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -427,11 +427,11 @@ static int get_transform_coeffs_ch(AC3DecodeContext *ctx, int ch_index, mant_gro 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 @@ static int ac3_parse_audio_block(AC3DecodeContext *ctx, int blk) 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 */ } } |