|
||
class TYuvFormat;
YUV (YCbCr) uncompressed image data format.
Defined in TYuvFormat
:
iAspectRatioDenom
Pixel aspect ratio denominator. The aspect ratio is defined as iAspectRatioNum/i...iAspectRatioNum
Pixel aspect ratio numerator.iCoefficients
The YUV/RGB conversion coefficients to useiDataLayout
Data layout, specifies whether the data is stored in a planar or interleaved mod...iPattern
Luminance/chrominance sampling pattern.iRgb2YuvMatrix
Custom RGB to YUV conversion matrix to use. Valid only if custom conversion matr...iYuv2RgbMatrix
Custom YUV to RGB conversion matrix to use. Valid only if custom conversion matr...operator==(const TYuvFormat &)const
Tests whether this TYuvFormat object is the same as aOther. inline TBool operator==(const TYuvFormat &aOther) const;
Tests whether this TYuvFormat object is the same as aOther.
|
|
TYuvDataLayout iDataLayout;
Data layout, specifies whether the data is stored in a planar or interleaved mode.
TYuvConversionMatrix * iYuv2RgbMatrix;
Custom YUV to RGB conversion matrix to use. Valid only if custom conversion matrix is used (iCoefficients is ECustomYuvMatrix).
TYuvConversionMatrix * iRgb2YuvMatrix;
Custom RGB to YUV conversion matrix to use. Valid only if custom conversion matrix is used (iCoefficients is ECustomYuvMatrix).
TUint iAspectRatioDenom;
Pixel aspect ratio denominator. The aspect ratio is defined as iAspectRatioNum/iAspectRatioDenom, where the values are positive integers and relatively prime.