Commit 3c928477 authored by Mans Rullgard's avatar Mans Rullgard

aacdec: remove dead assignment

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 800ab1ba
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment