Commit 9b7c0960 authored by vitor's avatar vitor

Cosmetics: remove useless parenthesis

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13160 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 04b90504
...@@ -114,7 +114,7 @@ static void do_voice(int *a1, int *a2) ...@@ -114,7 +114,7 @@ static void do_voice(int *a1, int *a2)
b1[x] = a1[x] << 4; b1[x] = a1[x] << 4;
for (y=0; y < x; y++) for (y=0; y < x; y++)
b1[y] = ((a1[x] * (b2[x-y-1])) >> 12) + b2[y]; b1[y] = ((a1[x] * b2[x-y-1]) >> 12) + b2[y];
FFSWAP(int *, b1, b2); FFSWAP(int *, b1, b2);
} }
......
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