]> git.sesse.net Git - vlc/commitdiff
Nevermind. /me buys some glasses.
authorAntoine Cellerier <dionoea@videolan.org>
Sun, 9 Sep 2007 19:41:05 +0000 (19:41 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Sun, 9 Sep 2007 19:41:05 +0000 (19:41 +0000)
modules/video_filter/invert.c

index 3b49e333906ae6aff503cc07154f82fff76e312b..b0c246f3b2ff4a538628b87d78ae04fa99089dc5 100644 (file)
@@ -153,7 +153,7 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
 
             for( ; (ptrdiff_t)p_in64 < (ptrdiff_t)p_line_end ; )
             {
-                /* Do 8 pixels at a time */
+                /* Do 64 pixels at a time */
                 *p_out64++ = ~*p_in64++; *p_out64++ = ~*p_in64++;
                 *p_out64++ = ~*p_in64++; *p_out64++ = ~*p_in64++;
                 *p_out64++ = ~*p_in64++; *p_out64++ = ~*p_in64++;