Commit 5419da8d authored by Alex Converse's avatar Alex Converse

AAC: Simplify some logic from r19956. (The escape codebook is unsigned.)

Originally committed as revision 19958 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1dee3e97
......@@ -927,7 +927,7 @@ static int decode_spectrum_and_dequant(AACContext *ac, float coef[1024],
if (is_cb_unsigned && cur_band_type != ESC_BT) {
ac->dsp.vector_fmul_sv_scalar[dim>>2](
cf, cf, vq, sf[idx], len);
} else if (is_cb_unsigned && cur_band_type == ESC_BT) {
} else if (cur_band_type == ESC_BT) {
ac->dsp.vector_fmul_scalar(cf, cf, sf[idx], len);
} else { /* !is_cb_unsigned */
ac->dsp.sv_fmul_scalar[dim>>2](cf, vq, sf[idx], len);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment