[FFmpeg-cvslog] r13385 - trunk/libavcodec/ac3dec.c
jbr
subversion
Sun May 25 18:20:06 CEST 2008
Author: jbr
Date: Sun May 25 18:20:06 2008
New Revision: 13385
Log:
cosmetics: indent
Modified:
trunk/libavcodec/ac3dec.c
Modified: trunk/libavcodec/ac3dec.c
==============================================================================
--- trunk/libavcodec/ac3dec.c (original)
+++ trunk/libavcodec/ac3dec.c Sun May 25 18:20:06 2008
@@ -990,13 +990,13 @@ static int ac3_parse_audio_block(AC3Deco
/* coupling leak information */
if (s->cpl_in_use) {
if (get_bits1(gbc)) {
- s->bit_alloc_params.cpl_fast_leak = get_bits(gbc, 3);
- s->bit_alloc_params.cpl_slow_leak = get_bits(gbc, 3);
- bit_alloc_stages[CPL_CH] = FFMAX(bit_alloc_stages[CPL_CH], 2);
- } else if (!blk) {
- av_log(s->avctx, AV_LOG_ERROR, "new coupling leak info must be present in block 0\n");
- return -1;
- }
+ s->bit_alloc_params.cpl_fast_leak = get_bits(gbc, 3);
+ s->bit_alloc_params.cpl_slow_leak = get_bits(gbc, 3);
+ bit_alloc_stages[CPL_CH] = FFMAX(bit_alloc_stages[CPL_CH], 2);
+ } else if (!blk) {
+ av_log(s->avctx, AV_LOG_ERROR, "new coupling leak info must be present in block 0\n");
+ return -1;
+ }
}
/* delta bit allocation information */
More information about the ffmpeg-cvslog
mailing list