diff --git a/include/vlc_video.h b/include/vlc_video.h index ac88d5723c1424b8767fc708ba3a4f3026aabd4d..c152d9ff2627caea9664ebe475da44fae41063f3 100644 --- a/include/vlc_video.h +++ b/include/vlc_video.h @@ -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;