Commit efa86ebe authored by Vitor Sessak's avatar Vitor Sessak

Cosmetics: remove useless parenthesis

Originally committed as revision 14418 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e07c5ade
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment