From bd98e9e2302f13d000e152d17ef6c7ae35f840b5 Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Tue, 27 May 2008 00:43:39 +0000 Subject: [PATCH] zero the upper frequencies of the correct coefficients Originally committed as revision 13452 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 4272a6d35f..bb81ff6916 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -604,7 +604,7 @@ static int get_transform_coeffs(AC3DecodeContext *s) end = s->end_freq[ch]; } do - s->transform_coeffs[ch][end] = 0; + s->fixed_coeffs[ch][end] = 0; while(++end < 256); }