eac3dec: fix bug in GAQ dequantization. large mantissas should only be

decoded when the gain value is 2 or 4.

Originally committed as revision 18889 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Justin Ruggles 16 years ago
parent 9907c7804a
commit 37a1cc4834
  1. 2
      libavcodec/eac3dec.c

@ -175,7 +175,7 @@ void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch)
for (blk = 0; blk < 6; blk++) { for (blk = 0; blk < 6; blk++) {
int mant = get_sbits(gbc, gbits); int mant = get_sbits(gbc, gbits);
if (mant == -(1 << (gbits-1))) { if (log_gain && mant == -(1 << (gbits-1))) {
/* large mantissa */ /* large mantissa */
int b; int b;
int mbits = bits - (2 - log_gain); int mbits = bits - (2 - log_gain);

Loading…
Cancel
Save