Cosmetics: remove useless parenthesis

Originally committed as revision 14418 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak 2008-07-26 14:38:29 +00:00
parent e07c5ade5e
commit efa86ebe4c

View 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 */