| Updated: October 28, 2024 | 
Format for a YCbCr 4:2:2 packed frame type
#include <sensor/sensor_api.h>
typedef struct sensor_format_video_cbycry_t {
    uint64_t bufsize;
    uint32_t height;
    uint32_t width;
    uint32_t stride;
    uint32_t packing;
    uint32_t bpp;
    bool le;
} sensor_format_video_cbycry_t;
Stride is often called pitch.
A value of true indicates that the bytes are packed in little-endian order; a value of false indicates that the bytes are packed in big-endian order.
Use this format when SENSOR_FORMAT_VIDEO_CBYCRY is reported as the sensor_format_t.
Each set of 2 pixel values in the CbYCrY frame is part of a macro-pixel. A macro-pixel is thus made up of four components in the following order: a Cb (blue-difference chroma) component and Y (luma) component (which comprise the first pixel value), and a Cr (red-difference chroma) component and Y (luma) component (which comprise the second pixel value). Each macro-pixel is stored contiguously on the same line.
Each pixel contains a number of bits indicated by bpp and is stored in the packing field. The endian order le indicates if the bit packing was done in little-endian or big-endian order.
Bit: 0 1 2 3 4 5 6 7 01234567 0 1 2 3 4 5 6 7 01234567 Scanline n: CbCbCbCbCbCbCbCb YYYYYYYY CrCrCrCrCrCrCrCr YYYYYYYY = 32 bits