summaryrefslogtreecommitdiff
path: root/libavcodec/ac3dec.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2009-05-06 01:48:14 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2009-05-06 01:48:14 +0000
commit778bc09bbe5cd5b1044c47ff914de34971e3ba81 (patch)
tree3e5c2bd5545ef5b9ac14347f09720f8c78caca8d /libavcodec/ac3dec.c
parent396b73c7f788af44da40434b781e3980bf87ef88 (diff)
cosmetics: line wrap and vertical alignment
Originally committed as revision 18752 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r--libavcodec/ac3dec.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index 9f0f69977a..b3382bd120 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -735,8 +735,8 @@ static void ac3_upmix_delay(AC3DecodeContext *s)
static void decode_band_structure(GetBitContext *gbc, int blk, int eac3,
int ecpl, int start_subband, int end_subband,
const uint8_t *default_band_struct,
- uint8_t *band_struct,
- int *num_bands, uint8_t *band_sizes)
+ uint8_t *band_struct, int *num_bands,
+ uint8_t *band_sizes)
{
int subbnd, bnd, n_subbands, n_bands=0;
uint8_t bnd_sz[22];
@@ -880,11 +880,10 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
s->start_freq[CPL_CH] = cpl_start_subband * 12 + 37;
s->end_freq[CPL_CH] = cpl_end_subband * 12 + 37;
- decode_band_structure(gbc, blk, s->eac3, 0,
- cpl_start_subband, cpl_end_subband,
- ff_eac3_default_cpl_band_struct,
- s->cpl_band_struct,
- &s->num_cpl_bands, NULL);
+ decode_band_structure(gbc, blk, s->eac3, 0, cpl_start_subband,
+ cpl_end_subband,
+ ff_eac3_default_cpl_band_struct,
+ s->cpl_band_struct, &s->num_cpl_bands, NULL);
} else {
/* coupling not in use */
for (ch = 1; ch <= fbw_channels; ch++) {