XAQ_VideoEncoderCropping

Updated: April 19, 2023

Cropping area boundaries for video encoding

Synopsis:

#include <OMXAL/OpenMAXAL_QNXConfigExt.h>
typedef struct {
    XAint32 left;
    XAint32 right;
    XAint32 top;
    XAint32 bottom;
} XAQ_VideoEncoderCropping;

Data:

XAint32 left
XAint32 right
XAint32 top
XAint32 bottom

Library:

mmfilter

Description:

The XAQ_VideoEncoderCropping structure defines the cropping area to use in video encoding, based on the left, right, top, and bottom boundaries (in pixels).

This data type is used as the value of the XAQ_CONFIGEXT_KEY_VENC_CROPPING key:
XAQ_VideoEncoderCropping cropping;
...
(*configExtensionItf)->SetConfiguration(configExtensionItf, 
                                        XAQ_CONFIGEXT_KEY_VENC_CROPPING, 
                                        sizeof(cropping), 
                                        &cropping);