[FFmpeg-cvslog] r13160 - trunk/libavcodec/ra144.c
vitor
subversion
Thu May 15 20:29:05 CEST 2008
Author: vitor
Date: Thu May 15 20:29:05 2008
New Revision: 13160
Log:
Cosmetics: remove useless parenthesis
Modified:
trunk/libavcodec/ra144.c
Modified: trunk/libavcodec/ra144.c
==============================================================================
--- trunk/libavcodec/ra144.c (original)
+++ trunk/libavcodec/ra144.c Thu May 15 20:29:05 2008
@@ -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);
}
More information about the ffmpeg-cvslog
mailing list