Commit 13b67293 authored by Vitor Sessak's avatar Vitor Sessak

Use an intermediate variable for overflow testing

Originally committed as revision 13283 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 84490b74
......@@ -154,19 +154,22 @@ static void final(const short *i1, const short *i2,
for (i=0; i<len; i++) {
int sum = 0;
int new_val;
for(x=0; x<10; x++)
sum += i1[9-x] * ptr[x];
sum >>= 12;
if (ptr[10] - sum < -32768 || ptr[10] - sum > 32767) {
new_val = ptr[10] - sum;
if (new_val < -32768 || new_val > 32767) {
memset(out, 0, len * 2);
memset(statbuf, 0, 20);
return;
}
ptr[10] -= sum;
ptr[10] = new_val;
ptr++;
}
......
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