Commit 9b6c6e5b authored by jbr's avatar jbr

zero the upper frequencies of the correct coefficients

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13452 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 25211bdf
...@@ -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