You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
cosmetics: indentation
Originally committed as revision 15813 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -938,7 +938,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
|
|||||||
if (s->spx_in_use[blk]) {
|
if (s->spx_in_use[blk]) {
|
||||||
cpl_end_subband = s->spx_start_subband - 1;
|
cpl_end_subband = s->spx_start_subband - 1;
|
||||||
} else {
|
} else {
|
||||||
cpl_end_subband = get_bits(gbc, 4) + 3;
|
cpl_end_subband = get_bits(gbc, 4) + 3;
|
||||||
}
|
}
|
||||||
s->num_cpl_subbands = cpl_end_subband - cpl_start_subband;
|
s->num_cpl_subbands = cpl_end_subband - cpl_start_subband;
|
||||||
if (s->num_cpl_subbands < 0) {
|
if (s->num_cpl_subbands < 0) {
|
||||||
@@ -1016,7 +1016,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
|
|||||||
s->num_rematrixing_bands = 4;
|
s->num_rematrixing_bands = 4;
|
||||||
if (cpl_in_use) {
|
if (cpl_in_use) {
|
||||||
if (s->start_freq[CPL_CH] <= 61)
|
if (s->start_freq[CPL_CH] <= 61)
|
||||||
s->num_rematrixing_bands -= 1 + (s->start_freq[CPL_CH] == 37);
|
s->num_rematrixing_bands -= 1 + (s->start_freq[CPL_CH] == 37);
|
||||||
} else if (s->spx_in_use[blk]) {
|
} else if (s->spx_in_use[blk]) {
|
||||||
if (s->spx_start_freq <= 61)
|
if (s->spx_start_freq <= 61)
|
||||||
s->num_rematrixing_bands -= 1 + (s->spx_start_freq <= 37) +
|
s->num_rematrixing_bands -= 1 + (s->spx_start_freq <= 37) +
|
||||||
|
Reference in New Issue
Block a user