summaryrefslogtreecommitdiff
path: root/libavcodec/aacdec.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-07-01 13:50:09 +0100
committerMans Rullgard <mans@mansr.com>2012-07-01 20:38:14 +0100
commit3c928477d2f42c456f4c560db032a4380a3b6953 (patch)
tree4f614c3514ed8dbb89b0a91de90c3fdf7c065cb1 /libavcodec/aacdec.c
parent800ab1bafa0698bdac32061c1bc72d5e04821e96 (diff)
aacdec: remove dead assignment
Signed-off-by: Mans Rullgard <mans@mansr.com>
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 f16b831ccd..4be525555a 100644
--- a/libavcodec/aacdec.c
+++ b/libavcodec/aacdec.c
@@ -1271,7 +1271,7 @@ static inline float *VMUL4S(float *dst, const float *v, unsigned idx,
t.i = s.i ^ (sign & 1U<<31);
*dst++ = v[idx>>4 & 3] * t.f;
- sign <<= nz & 1; nz >>= 1;
+ sign <<= nz & 1;
t.i = s.i ^ (sign & 1U<<31);
*dst++ = v[idx>>6 & 3] * t.f;