diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-08-05 01:14:28 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-08-05 01:14:28 +0000 |
commit | c36ea0600ce896dfc62daf36f7460c79a9a2d239 (patch) | |
tree | 368b18a5605ffbaeb05bee994d254d17cb841420 /libavcodec/ac3dec.c | |
parent | 3f9371680990e1eb8d9b76dde4d5fea82e4cd2ab (diff) | |
download | ffmpeg-c36ea0600ce896dfc62daf36f7460c79a9a2d239.tar.gz |
cosmetics after last commit
Originally committed as revision 19586 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r-- | libavcodec/ac3dec.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 7f7efe56ba..5f3ace327f 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -730,8 +730,7 @@ 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, - int *num_bands, - uint8_t *band_sizes) + int *num_bands, uint8_t *band_sizes) { int subbnd, bnd, n_subbands, n_bands=0; uint8_t bnd_sz[22]; @@ -881,8 +880,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk) decode_band_structure(gbc, blk, s->eac3, 0, cpl_start_subband, cpl_end_subband, ff_eac3_default_cpl_band_struct, - &s->num_cpl_bands, - s->cpl_band_sizes); + &s->num_cpl_bands, s->cpl_band_sizes); } else { /* coupling not in use */ for (ch = 1; ch <= fbw_channels; ch++) { |