comparison eac3dec.c @ 7754:b7c59017beb8 libavcodec

use correct table name
author jbr
date Sun, 31 Aug 2008 02:58:21 +0000
parents e3fb2606d5b5
children 1c0e498ac7bd
comparison
equal deleted inserted replaced
7753:5e65094bbc23 7754:b7c59017beb8
129 } 129 }
130 } else if (hebap < 8) { 130 } else if (hebap < 8) {
131 /* Vector Quantization */ 131 /* Vector Quantization */
132 int v = get_bits(gbc, bits); 132 int v = get_bits(gbc, bits);
133 for (blk = 0; blk < 6; blk++) { 133 for (blk = 0; blk < 6; blk++) {
134 s->pre_mantissa[ch][bin][blk] = ff_eac3_vq_hebap[hebap][v][blk] << 8; 134 s->pre_mantissa[ch][bin][blk] = ff_eac3_mantissa_vq[hebap][v][blk] << 8;
135 } 135 }
136 } else { 136 } else {
137 /* Gain Adaptive Quantization */ 137 /* Gain Adaptive Quantization */
138 int gbits, log_gain; 138 int gbits, log_gain;
139 if (gaq_mode != EAC3_GAQ_NO && hebap < end_bap) { 139 if (gaq_mode != EAC3_GAQ_NO && hebap < end_bap) {