#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[non_exhaustive]
pub enum ColorPrimaries {
Bt709 = 1,
Unspecified = 2,
Bt601 = 6,
Bt2020 = 9,
DciP3 = 11,
DisplayP3 = 12,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[non_exhaustive]
pub enum TransferCharacteristics {
Bt709 = 1,
Unspecified = 2,
#[deprecated(note = "This is obsolete. Please don't proliferate legacy baggage.")]
#[doc(hidden)]
Bt470M = 4,
#[deprecated(note = "This is obsolete. Please don't proliferate legacy baggage.")]
#[doc(hidden)]
Bt470BG = 5,
Bt601 = 6,
Smpte240 = 7,
Linear = 8,
Log = 9,
LogSqrt = 10,
Iec61966 = 11,
#[deprecated(note = "This is obsolete. Please don't proliferate legacy baggage.")]
#[doc(hidden)]
Bt1361 = 12,
Srgb = 13,
Bt2020_10 = 14,
Bt2020_12 = 15,
Smpte2084 = 16,
Smpte428 = 17,
Hlg = 18,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[non_exhaustive]
pub enum MatrixCoefficients {
Rgb = 0,
Bt709 = 1,
Unspecified = 2,
Bt601 = 6,
Ycgco = 8,
Bt2020Ncl = 9,
Bt2020Cl = 10,
}