Cosmetics: remove useless parenthesis

Originally committed as revision 13160 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-05-15 18:29:05 +00:00
parent dbef8b1c84
commit cf408d8873
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}