This is the interface for the LEAD MJPEG Encoder.
typedef enum
{
SAMPLING_444,
SAMPLING_422,
SAMPLING_411,
} MJPEGSamplingConstants;
Lists possible values for the MJPEG subsampling.
Value | Description |
---|---|
SAMPLING_444 |
[0] MJPEG 4:4:4 subsampling. |
SAMPLING_422 |
[1] MJPEG 4:2:2 subsampling. Lower compression ratio than 4:1:1, higher compression than 4:4:4. |
SAMPLING_411 |
[2] MJPEG 4:1:1 subsampling. Has a higher compression ratio than 4:2:2 and 4:4:4 |