A format used for semi-planar video where luminance and chrominance information is stored in two separate planes
#include <sensor/sensor_api.h>
typedef struct sensor_format_video_semiplanar_t {
uint32_t height;
uint32_t width;
uint32_t stride;
int64_t chroma_offset;
int64_t chroma_stride;
} sensor_format_video_semiplanar_t;
Stride is often called pitch. For more information, see the uv_stride member.
On a device where there isn't a gap between the Y and chroma planes, the chroma_offset would be height times stride bytes.
For more information, see the stride member.