diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-05-21 00:09:23 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-05-21 00:09:23 +0000 |
commit | ae04de316f03d038b21078c803007cb8f955777a (patch) | |
tree | 20eddcb0e2161d80b7c41ba2a9e458f2f4a17040 /libavcodec/ac3dec.c | |
parent | e20a4f53a091ae74e6c9e9a280eefe5c59c7ebe4 (diff) | |
download | ffmpeg-ae04de316f03d038b21078c803007cb8f955777a.tar.gz |
eac3dec: revert commit r18860. keep the AHT IDCT 24-bit. will make AHT GAQ
dequantization 24-bit in a separate commit.
Originally committed as revision 18887 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 cd40666c2c..5feb189519 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -562,7 +562,7 @@ static void decode_transform_coeffs_ch(AC3DecodeContext *s, int blk, int ch, if (!blk) ff_eac3_decode_transform_coeffs_aht_ch(s, ch); for (bin = s->start_freq[ch]; bin < s->end_freq[ch]; bin++) { - s->fixed_coeffs[ch][bin] = (s->pre_mantissa[ch][bin][blk] << 8) >> s->dexps[ch][bin]; + s->fixed_coeffs[ch][bin] = s->pre_mantissa[ch][bin][blk] >> s->dexps[ch][bin]; } } } |