[FFmpeg-soc] [soc]: r3020 - eac3/ac3dec.c
jbr
subversion at mplayerhq.hu
Tue Aug 5 03:22:20 CEST 2008
Author: jbr
Date: Tue Aug 5 03:22:20 2008
New Revision: 3020
Log:
10l: fix error in r3016
Modified:
eac3/ac3dec.c
Modified: eac3/ac3dec.c
==============================================================================
--- eac3/ac3dec.c (original)
+++ eac3/ac3dec.c Tue Aug 5 03:22:20 2008
@@ -799,7 +799,7 @@ static int decode_audio_block(AC3DecodeC
/* coupling strategy */
if (!s->eac3)
s->cpl_strategy_exists[blk] = get_bits1(gbc);
- if (s->cpl_strategy_exists[blk] || (!s->eac3 && get_bits1(gbc))) {
+ if (s->cpl_strategy_exists[blk]) {
memset(bit_alloc_stages, 3, AC3_MAX_CHANNELS);
if (!s->eac3)
s->cpl_in_use[blk] = get_bits1(gbc);
More information about the FFmpeg-soc
mailing list