diff options
author | Mans Rullgard <mans@mansr.com> | 2012-07-01 13:50:09 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-07-01 20:38:14 +0100 |
commit | 3c928477d2f42c456f4c560db032a4380a3b6953 (patch) | |
tree | 4f614c3514ed8dbb89b0a91de90c3fdf7c065cb1 | |
parent | 800ab1bafa0698bdac32061c1bc72d5e04821e96 (diff) | |
download | ffmpeg-3c928477d2f42c456f4c560db032a4380a3b6953.tar.gz |
aacdec: remove dead assignment
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavcodec/aacdec.c | 2 |
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; |