Commit bd98e9e2 authored by Justin Ruggles's avatar Justin Ruggles

zero the upper frequencies of the correct coefficients

Originally committed as revision 13452 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 936d4891
...@@ -604,7 +604,7 @@ static int get_transform_coeffs(AC3DecodeContext *s) ...@@ -604,7 +604,7 @@ static int get_transform_coeffs(AC3DecodeContext *s)
end = s->end_freq[ch]; end = s->end_freq[ch];
} }
do do
s->transform_coeffs[ch][end] = 0; s->fixed_coeffs[ch][end] = 0;
while(++end < 256); while(++end < 256);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment