mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
Cosmetics: remove useless parenthesis
Originally committed as revision 13160 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
dbef8b1c84
commit
cf408d8873
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user