YUYV
YUYV is a color encoding used in digital video that represents chroma-subsampled, 8-bit YUV data in a packed 4:2:2 format. It is commonly referred to as YUYV or YUY2 in various software and hardware contexts. The defining characteristic is that two adjacent image pixels are described by four bytes: Y0, U, Y1, V. In other words, each pair of pixels shares a single U and a single V sample, while each pixel retains its own Y (luminance) sample.
In this arrangement the Y component provides the luminance information for each pixel, while the U and
Usage and compatibility: YUYV/YUY2 is widely used in video capture devices, webcams, and video pipelines due
Notes: When converting to RGB or another color space, a standard Y'CbCr to RGB conversion is applied.