From 3b5dbe9dda4b34815c390db187850595f09aed83 Mon Sep 17 00:00:00 2001 From: jbr <jbr@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b> Date: Sun, 31 Aug 2008 02:58:21 +0000 Subject: [PATCH] use correct table name git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15099 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/eac3dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/eac3dec.c b/libavcodec/eac3dec.c index 836cb8ef0..7f43e6307 100644 --- a/libavcodec/eac3dec.c +++ b/libavcodec/eac3dec.c @@ -131,7 +131,7 @@ void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch) /* Vector Quantization */ int v = get_bits(gbc, bits); for (blk = 0; blk < 6; blk++) { - s->pre_mantissa[ch][bin][blk] = ff_eac3_vq_hebap[hebap][v][blk] << 8; + s->pre_mantissa[ch][bin][blk] = ff_eac3_mantissa_vq[hebap][v][blk] << 8; } } else { /* Gain Adaptive Quantization */ -- 2.25.4