mirror of
https://github.com/videolan/vlc.git
synced 2025-01-11 18:28:04 +08:00
* include/vlc_video.h: added an i_visible_lines field to plane_t.
This commit is contained in:
parent
ee6291a276
commit
56d76ed1eb
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user