]> git.sesse.net Git - vlc/commitdiff
Use parenthesis to make it more readible.`
authorJean-Paul Saman <jpsaman@videolan.org>
Wed, 8 Aug 2007 09:25:42 +0000 (09:25 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Wed, 8 Aug 2007 09:25:42 +0000 (09:25 +0000)
modules/video_filter/blend.c

index cf36ef3037ae2fdb523a128a6d1d964cc501db50..96813781b117cfdcefeaf79fe9ee36f8c92baf6c 100644 (file)
@@ -1472,7 +1472,7 @@ static void BlendPalI420( filter_t *p_filter, picture_t *p_dst,
                 /* Completely opaque. Completely overwrite underlying pixel */
                 p_dst_y[i_x] = p_pal[p_src2[i_x]][0];
 
-                if( b_even_scanline && i_x % 2 == 0 )
+                if( b_even_scanline && ((i_x % 2) == 0) )
                 {
                     p_dst_u[i_x/2] = p_pal[p_src2[i_x]][1];
                     p_dst_v[i_x/2] = p_pal[p_src2[i_x]][2];
@@ -1485,7 +1485,7 @@ static void BlendPalI420( filter_t *p_filter, picture_t *p_dst,
                 (uint16_t)p_src1_y[i_x] * (MAX_TRANS - i_trans) )
                 >> TRANS_BITS;
 
-            if( b_even_scanline && i_x % 2 == 0 )
+            if( b_even_scanline && ((i_x % 2) == 0) )
             {
                 p_dst_u[i_x/2] = ( (uint16_t)p_pal[p_src2[i_x]][1] * i_trans +
                     (uint16_t)p_src1_u[i_x/2] * (MAX_TRANS - i_trans) )