1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

zero the upper frequencies of the correct coefficients

Originally committed as revision 13452 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2008-05-27 00:43:39 +00:00
parent 936d48911a
commit bd98e9e230

View File

@ -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);
}