From 45d9d61889874bf7d2f0babddb6778e71d71630e Mon Sep 17 00:00:00 2001 From: Loren Merritt Date: Wed, 13 Aug 2008 23:30:53 +0000 Subject: [PATCH] don't mark the delayed samples for upmixing if they haven't been downmixed Originally committed as revision 14741 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ac3dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index d6f5d8a79b..4b288df84a 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -1025,7 +1025,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk) ac3_downmix(s, s->transform_coeffs+1); } - if(!s->downmixed) { + if(downmix_output && !s->downmixed) { s->downmixed = 1; // FIXME delay[] is half the size of the other downmixes ac3_downmix(s, s->delay);