[FFmpeg-cvslog] r14418 - trunk/libavcodec/ra288.c

vitor subversion
Sat Jul 26 16:38:29 CEST 2008


Author: vitor
Date: Sat Jul 26 16:38:29 2008
New Revision: 14418

Log:
Cosmetics: remove useless parenthesis

Modified:
   trunk/libavcodec/ra288.c

Modified: trunk/libavcodec/ra288.c
==============================================================================
--- trunk/libavcodec/ra288.c	(original)
+++ trunk/libavcodec/ra288.c	Sat Jul 26 16:38:29 2008
@@ -51,7 +51,7 @@ static inline float scalar_product_float
 static void colmult(float *tgt, const float *m1, const float *m2, int n)
 {
     while (n--)
-        *(tgt++) = (*(m1++)) * (*(m2++));
+        *tgt++ = *m1++ * *m2++;
 }
 
 /* Decode and produce output */




More information about the ffmpeg-cvslog mailing list