diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-05-27 00:43:39 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-05-27 00:43:39 +0000 |
commit | bd98e9e2302f13d000e152d17ef6c7ae35f840b5 (patch) | |
tree | 4253bf445c361237c6e7fb838e18d21471862724 /libavcodec/ac3dec.c | |
parent | 936d48911af2e517882838f6377324e2b782ac59 (diff) | |
download | ffmpeg-bd98e9e2302f13d000e152d17ef6c7ae35f840b5.tar.gz |
zero the upper frequencies of the correct coefficients
Originally committed as revision 13452 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r-- | libavcodec/ac3dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |