OSDN Git Service

Cosmetics: remove useless parenthesis
authorVitor Sessak <vitor1001@gmail.com>
Sat, 26 Jul 2008 14:38:29 +0000 (14:38 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Sat, 26 Jul 2008 14:38:29 +0000 (14:38 +0000)
Originally committed as revision 14418 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ra288.c

index 6b96078..1808e33 100644 (file)
@@ -51,7 +51,7 @@ static inline float scalar_product_float(const float * v1, const float * v2,
 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 */