diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2008-01-17 11:07:27 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-01-17 11:07:27 +0000 |
commit | 8916b4b55b16fe44795aba66ca843c2b5b758fc4 (patch) | |
tree | 6d7a3b8cdb04693eb9ffc9cbef4e8a091010445c /libswscale/rgb2rgb_template.c | |
parent | 30c48a0af446a6c2b51d2c7ecfcfef0600a95f54 (diff) | |
download | ffmpeg-8916b4b55b16fe44795aba66ca843c2b5b758fc4.tar.gz |
Remove some useless parentheses.
Originally committed as revision 25779 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/rgb2rgb_template.c')
-rw-r--r-- | libswscale/rgb2rgb_template.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/rgb2rgb_template.c b/libswscale/rgb2rgb_template.c index 129ac401a1..285d21f911 100644 --- a/libswscale/rgb2rgb_template.c +++ b/libswscale/rgb2rgb_template.c @@ -1621,7 +1621,7 @@ static inline void RENAME(yuvPlanartoyuy2)(const uint8_t *ysrc, const uint8_t *u } #endif #endif - if ((y&(vertLumPerChroma-1))==(vertLumPerChroma-1) ) + if ((y&(vertLumPerChroma-1)) == vertLumPerChroma-1) { usrc += chromStride; vsrc += chromStride; @@ -1727,7 +1727,7 @@ static inline void RENAME(yuvPlanartouyvy)(const uint8_t *ysrc, const uint8_t *u } #endif #endif - if ((y&(vertLumPerChroma-1))==(vertLumPerChroma-1)) + if ((y&(vertLumPerChroma-1)) == vertLumPerChroma-1) { usrc += chromStride; vsrc += chromStride; |