mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-06 04:28:38 +00:00
cosmetics: indentation
Originally committed as revision 9748 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0ce668015f
commit
d699d38393
@ -1638,24 +1638,24 @@ static int ac3_parse_audio_block(AC3DecodeContext * ctx)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (bit_alloc_flags) {
|
if (bit_alloc_flags) {
|
||||||
/* set bit allocation parameters */
|
/* set bit allocation parameters */
|
||||||
ctx->bit_alloc_params.fscod = ctx->fscod;
|
ctx->bit_alloc_params.fscod = ctx->fscod;
|
||||||
ctx->bit_alloc_params.halfratecod = 0;
|
ctx->bit_alloc_params.halfratecod = 0;
|
||||||
ctx->bit_alloc_params.sdecay = ff_sdecaytab[ctx->sdcycod];
|
ctx->bit_alloc_params.sdecay = ff_sdecaytab[ctx->sdcycod];
|
||||||
ctx->bit_alloc_params.fdecay = ff_fdecaytab[ctx->fdcycod];
|
ctx->bit_alloc_params.fdecay = ff_fdecaytab[ctx->fdcycod];
|
||||||
ctx->bit_alloc_params.sgain = ff_sgaintab[ctx->sgaincod];
|
ctx->bit_alloc_params.sgain = ff_sgaintab[ctx->sgaincod];
|
||||||
ctx->bit_alloc_params.dbknee = ff_dbkneetab[ctx->dbpbcod];
|
ctx->bit_alloc_params.dbknee = ff_dbkneetab[ctx->dbpbcod];
|
||||||
ctx->bit_alloc_params.floor = ff_floortab[ctx->floorcod];
|
ctx->bit_alloc_params.floor = ff_floortab[ctx->floorcod];
|
||||||
ctx->bit_alloc_params.cplfleak = ctx->cplfleak;
|
ctx->bit_alloc_params.cplfleak = ctx->cplfleak;
|
||||||
ctx->bit_alloc_params.cplsleak = ctx->cplsleak;
|
ctx->bit_alloc_params.cplsleak = ctx->cplsleak;
|
||||||
|
|
||||||
if (ctx->chincpl && (bit_alloc_flags & 64))
|
if (ctx->chincpl && (bit_alloc_flags & 64))
|
||||||
do_bit_allocation(ctx, 5);
|
do_bit_allocation(ctx, 5);
|
||||||
for (i = 0; i < nfchans; i++)
|
for (i = 0; i < nfchans; i++)
|
||||||
if ((bit_alloc_flags >> i) & 1)
|
if ((bit_alloc_flags >> i) & 1)
|
||||||
do_bit_allocation(ctx, i);
|
do_bit_allocation(ctx, i);
|
||||||
if (ctx->lfeon && (bit_alloc_flags & 32))
|
if (ctx->lfeon && (bit_alloc_flags & 32))
|
||||||
do_bit_allocation(ctx, 6);
|
do_bit_allocation(ctx, 6);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (get_bits1(gb)) { /* unused dummy data */
|
if (get_bits1(gb)) { /* unused dummy data */
|
||||||
|
Loading…
Reference in New Issue
Block a user