Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2008-11-13 06:18:18 +0300
committerJustin Ruggles <justin.ruggles@gmail.com>2008-11-13 06:18:18 +0300
commit66561189a1d91a476ef592e230ec6b73e59ca9a7 (patch)
tree8326ba74b911609730539c47ec04cb7aefed6238 /libavcodec/ac3dec.c
parent0cc51734b20032a5fea3020e40db968c5da91d1f (diff)
cosmetics: indentation
Originally committed as revision 15813 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r--libavcodec/ac3dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index fb6fc61340..6d0f82bfb1 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -938,7 +938,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
if (s->spx_in_use[blk]) {
cpl_end_subband = s->spx_start_subband - 1;
} 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;
if (s->num_cpl_subbands < 0) {
@@ -1016,7 +1016,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
s->num_rematrixing_bands = 4;
if (cpl_in_use) {
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]) {
if (s->spx_start_freq <= 61)
s->num_rematrixing_bands -= 1 + (s->spx_start_freq <= 37) +