Commit 5e278e9a authored by vitor's avatar vitor

Cosmetics: remove useless parenthesis

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14418 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7aacd2fe
......@@ -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