summaryrefslogtreecommitdiff
path: root/libavcodec/aac.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/aac.c')
-rw-r--r--libavcodec/aac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c
index 31bfe5b31a..d63d99fefc 100644
--- a/libavcodec/aac.c
+++ b/libavcodec/aac.c
@@ -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);