summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2008-05-27 00:43:39 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2008-05-27 00:43:39 +0000
commitbd98e9e2302f13d000e152d17ef6c7ae35f840b5 (patch)
tree4253bf445c361237c6e7fb838e18d21471862724
parent936d48911af2e517882838f6377324e2b782ac59 (diff)
zero the upper frequencies of the correct coefficients
Originally committed as revision 13452 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/ac3dec.c2
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);
}