A data type to describe a 'pixel map' in planar YUV format, typically used in video encoding.
Fields
WH size The dimensions of the rectangle of pixels. byte y[] The Y plane.
byte u[] The U plane.
byte v[] The V plane.
int yLineLength The length of each encoded line of the Y plane (as a portion of the width of the pixel map).
int uLineLength The length of each encoded line of the U plane (as a portion of the width of the pixel map).
int vLineLength The length of each encoded line of the V plane (as a portion of the width of the pixel map).