mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
use correct table name
Originally committed as revision 15099 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c5a2091295
commit
9cf8ebe38a
@ -131,7 +131,7 @@ void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch)
|
|||||||
/* Vector Quantization */
|
/* Vector Quantization */
|
||||||
int v = get_bits(gbc, bits);
|
int v = get_bits(gbc, bits);
|
||||||
for (blk = 0; blk < 6; blk++) {
|
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 {
|
} else {
|
||||||
/* Gain Adaptive Quantization */
|
/* Gain Adaptive Quantization */
|
||||||
|
Loading…
Reference in New Issue
Block a user