Navigation
API > API/Plugins > API/Plugins/TmvMedia
Carries the information about the YUV conversion matrix. Note: this is independent of the color space. YUV conversion is done prior to the application of the transfer function.
| Name | ETmvMediaEncoderColorMatrix |
| Type | enum |
| Header File | /Engine/Plugins/Media/TmvMedia/Source/TmvMedia/Public/Encoder/TmvMediaEncoderOptions.h |
| Include Path | #include "Encoder/TmvMediaEncoderOptions.h" |
Syntax
enum ETmvMediaEncoderColorMatrix
{
None = 0,
Identity = 1,
Rec601 = 2 UMETA(DisplayName="Rec601"),
Rec709 = 3 UMETA(DisplayName="Rec709"),
Rec2020 = 4 UMETA(DisplayName="Rec2020"),
}
Values
| Name | Remarks |
|---|---|
| None | Unspecified (no override). |
| Identity | Identity, i.e. no yuv conversion (rgb color model). |
| Rec601 | Rec. ITU-R BT.601-7 525 (Kr = 0.299, Kb = 0.114) |
| Rec709 | Rec. ITU-R BT.709-6 (Kr = 0.2126, Kb = 0.0722) |
| Rec2020 | Rec. ITU-R BT.2020-2 (Kr = 0.2627, Kb = 0.0593) |