diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-07-26 14:38:29 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-07-26 14:38:29 +0000 |
commit | efa86ebe4ce257b654e26427a89d51f8223aa347 (patch) | |
tree | d02cb6ecaa293076683f1741e291edb461bdf9d3 /libavcodec/ra288.c | |
parent | e07c5ade5ed31999f1ced140dcce29cea6ec0443 (diff) | |
download | ffmpeg-efa86ebe4ce257b654e26427a89d51f8223aa347.tar.gz |
Cosmetics: remove useless parenthesis
Originally committed as revision 14418 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r-- | libavcodec/ra288.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 6b96078048..1808e333fb 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -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 */ |