mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
cosmetics: remove unneeded braces
Originally committed as revision 26354 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5fc2e0075d
commit
a281c6509f
@ -642,9 +642,8 @@ static void group_exponents(AC3EncodeContext *s)
|
||||
for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
|
||||
AC3Block *block = &s->blocks[blk];
|
||||
for (ch = 0; ch < s->channels; ch++) {
|
||||
if (s->exp_strategy[ch][blk] == EXP_REUSE) {
|
||||
if (s->exp_strategy[ch][blk] == EXP_REUSE)
|
||||
continue;
|
||||
}
|
||||
group_size = s->exp_strategy[ch][blk] + (s->exp_strategy[ch][blk] == EXP_D45);
|
||||
nb_groups = exponent_group_tab[s->exp_strategy[ch][blk]-1][s->nb_coefs[ch]];
|
||||
bit_count += 4 + (nb_groups * 7);
|
||||
|
Loading…
x
Reference in New Issue
Block a user