Changeset c0da24fe8dbdd5a0db10043940c85afb3b54b542

Show
Ignore:
Timestamp:
08/08/07 11:25:42 (1 year ago)
Author:
Jean-Paul Saman <jpsaman@videolan.org>
git-committer:
Jean-Paul Saman <jpsaman@videolan.org> 1186565142 +0000
git-parent:

[cbbe174a03104b9d0ad1429a34a0ade1b3a1c92f]

git-author:
Jean-Paul Saman <jpsaman@videolan.org> 1186565142 +0000
Message:

Use parenthesis to make it more readible.`

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/video_filter/blend.c

    r9a1b826 rc0da24f  
    14731473                p_dst_y[i_x] = p_pal[p_src2[i_x]][0]; 
    14741474 
    1475                 if( b_even_scanline && i_x % 2 == 0
     1475                if( b_even_scanline && ((i_x % 2) == 0)
    14761476                { 
    14771477                    p_dst_u[i_x/2] = p_pal[p_src2[i_x]][1]; 
     
    14861486                >> TRANS_BITS; 
    14871487 
    1488             if( b_even_scanline && i_x % 2 == 0
     1488            if( b_even_scanline && ((i_x % 2) == 0)
    14891489            { 
    14901490                p_dst_u[i_x/2] = ( (uint16_t)p_pal[p_src2[i_x]][1] * i_trans +