diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-09-22 01:34:42 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2009-09-22 01:34:42 +0000 |
commit | 5419da8d9c09579172346f87424792180baa0d8c (patch) | |
tree | 052fab48ad09fe12a500223a973369a3e8c338d2 | |
parent | 1dee3e97c6971ac78404e5dd43b28c8fb7edbb39 (diff) | |
download | ffmpeg-5419da8d9c09579172346f87424792180baa0d8c.tar.gz |
AAC: Simplify some logic from r19956. (The escape codebook is unsigned.)
Originally committed as revision 19958 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/aac.c | 2 |
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); |