]> git.sesse.net Git - vlc/commitdiff
* include/vlc_video.h: added an i_visible_lines field to plane_t.
authorGildas Bazin <gbazin@videolan.org>
Sat, 28 Aug 2004 16:46:22 +0000 (16:46 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sat, 28 Aug 2004 16:46:22 +0000 (16:46 +0000)
include/vlc_video.h

index ac88d5723c1424b8767fc708ba3a4f3026aabd4d..c152d9ff2627caea9664ebe475da44fae41063f3 100644 (file)
@@ -35,13 +35,14 @@ typedef struct plane_t
     uint8_t *p_pixels;                        /**< Start of the plane's data */
 
     /* Variables used for fast memcpy operations */
-    int i_lines;                                        /**< Number of lines */
+    int i_lines;           /**< Number of lines, including margins */
     int i_pitch;           /**< Number of bytes in a line, including margins */
 
     /** Size of a macropixel, defaults to 1 */
     int i_pixel_pitch;
 
     /* Variables used for pictures with margins */
+    int i_visible_lines;            /**< How many visible lines are there ? */
     int i_visible_pitch;            /**< How many visible pixels are there ? */
 
 } plane_t;