]> git.sesse.net Git - vlc/commitdiff
Invert lines (cosmetic change only)
authorAntoine Cellerier <dionoea@videolan.org>
Wed, 25 Jul 2007 22:29:19 +0000 (22:29 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Wed, 25 Jul 2007 22:29:19 +0000 (22:29 +0000)
modules/video_filter/bluescreen.c

index f117fa5b8636794167ca35ed415a8e414bd737b5..7fc166e237279e8d5559b8ea7059c173e26b9022 100644 (file)
@@ -212,8 +212,8 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
               + ( p_at[(i-2)*i_pitch+j+1]<<2 )
               + ( p_at[(i-2)*i_pitch+j+2]<<1 )
               /* 1 row up */
-              + ( p_at[(i-1)*i_pitch+j-1]<<3 )
               + ( p_at[(i-1)*i_pitch+j-2]<<2 )
+              + ( p_at[(i-1)*i_pitch+j-1]<<3 )
               + ( p_at[(i-1)*i_pitch+j]*12 )
               + ( p_at[(i-1)*i_pitch+j+1]<<3 )
               + ( p_at[(i-1)*i_pitch+j+2]<<2 )