summaryrefslogtreecommitdiffstats
path: root/libavcodec/aacdec.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-05-23 15:56:52 -0400
committerJustin Ruggles <justin.ruggles@gmail.com>2011-05-23 15:56:52 -0400
commitcef7d70181ec7ee9df426ef0f3a08dd4995a4d9a (patch)
treefbe7f083cdc5232232f657ba090a7b0eece95fbf /libavcodec/aacdec.c
parentb51021da7b69a98f135cf15bbe7f3ecb08daaa82 (diff)
downloadffmpeg-streaming-cef7d70181ec7ee9df426ef0f3a08dd4995a4d9a.zip
ffmpeg-streaming-cef7d70181ec7ee9df426ef0f3a08dd4995a4d9a.tar.gz
aacdec: fix typo in scalefactor clipping check
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r--libavcodec/aacdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c
index fbb3582..69aacb8 100644
--- a/libavcodec/aacdec.c
+++ b/libavcodec/aacdec.c
@@ -820,7 +820,7 @@ static int decode_scalefactors(AACContext *ac, float sf[120], GetBitContext *gb,
else
offset[1] += get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60;
clipped_offset = av_clip(offset[1], -100, 155);
- if (offset[2] != clipped_offset) {
+ if (offset[1] != clipped_offset) {
av_log_ask_for_sample(ac->avctx, "Noise gain clipped "
"(%d -> %d).\nIf you heard an audible "
"artifact, there may be a bug in the decoder. ",
OpenPOWER on IntegriCloud