Skip to content
Snippets Groups Projects
Commit a281c650 authored by Justin Ruggles's avatar Justin Ruggles
Browse files

cosmetics: remove unneeded braces

Originally committed as revision 26354 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5fc2e007
No related branches found
No related tags found
No related merge requests found
...@@ -642,9 +642,8 @@ static void group_exponents(AC3EncodeContext *s) ...@@ -642,9 +642,8 @@ static void group_exponents(AC3EncodeContext *s)
for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) { for (blk = 0; blk < AC3_MAX_BLOCKS; blk++) {
AC3Block *block = &s->blocks[blk]; AC3Block *block = &s->blocks[blk];
for (ch = 0; ch < s->channels; ch++) { for (ch = 0; ch < s->channels; ch++) {
if (s->exp_strategy[ch][blk] == EXP_REUSE) { if (s->exp_strategy[ch][blk] == EXP_REUSE)
continue; continue;
}
group_size = s->exp_strategy[ch][blk] + (s->exp_strategy[ch][blk] == EXP_D45); 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]]; nb_groups = exponent_group_tab[s->exp_strategy[ch][blk]-1][s->nb_coefs[ch]];
bit_count += 4 + (nb_groups * 7); bit_count += 4 + (nb_groups * 7);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment