diff libswscale/rgb2rgb_template.c @ 25751:147deb141e07

Remove some useless parentheses.
author benoit
date Thu, 17 Jan 2008 11:07:27 +0000
parents 06bf0eb70a55
children 2ad528dd42a0
line wrap: on
line diff
--- a/libswscale/rgb2rgb_template.c	Thu Jan 17 10:24:14 2008 +0000
+++ b/libswscale/rgb2rgb_template.c	Thu Jan 17 11:07:27 2008 +0000
@@ -1621,7 +1621,7 @@
         }
 #endif
 #endif
-        if ((y&(vertLumPerChroma-1))==(vertLumPerChroma-1) )
+        if ((y&(vertLumPerChroma-1)) == vertLumPerChroma-1)
         {
             usrc += chromStride;
             vsrc += chromStride;
@@ -1727,7 +1727,7 @@
         }
 #endif
 #endif
-        if ((y&(vertLumPerChroma-1))==(vertLumPerChroma-1))
+        if ((y&(vertLumPerChroma-1)) == vertLumPerChroma-1)
         {
             usrc += chromStride;
             vsrc += chromStride;