Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-07-01 16:50:09 +0400
committerMans Rullgard <mans@mansr.com>2012-07-01 23:38:14 +0400
commit3c928477d2f42c456f4c560db032a4380a3b6953 (patch)
tree4f614c3514ed8dbb89b0a91de90c3fdf7c065cb1
parent800ab1bafa0698bdac32061c1bc72d5e04821e96 (diff)
aacdec: remove dead assignment
Signed-off-by: Mans Rullgard <mans@mansr.com>
-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;