Commit cf408d88 authored by Vitor Sessak's avatar Vitor Sessak

Cosmetics: remove useless parenthesis

Originally committed as revision 13160 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent dbef8b1c
......@@ -114,7 +114,7 @@ static void do_voice(int *a1, int *a2)
b1[x] = a1[x] << 4;
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);
}
......
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