[][src]Enum aom_decode::color::MatrixCoefficients

#[repr(C)]pub enum MatrixCoefficients {
    Identity,
    BT709,
    FCC,
    BT470BG,
    BT601,
    SMPTE240,
    YCgCo,
    BT2020NCL,
    BT2020CL,
    SMPTE2085,
    ChromatNCL,
    ChromatCL,
    ICtCp,
}

As defined by the “Matrix coefficients” section of ISO/IEC 23091-4/ITU-TH.273.

Variants

Identity

Identity matrix

BT709

BT.709 ITU-R Rec. BT.709-5, ITU-R Rec. BT.1361 conventional colour gamut system and extended colour gamut system, IEC 61966-2-4 xvYCC709, Society of Motion Picture and Television Engineers RP 177 (1993) KR = 0.2126; KB = 0.0722

FCC

United States Federal Communications Commission Title 47 Code of Federal Regulations (2003) 73.682 (a) (20) KR = 0.30; KB = 0.11

BT470BG

ITU-RRec.BT.470-6SystemB,G,IEC61966-2-4xvYCC601 (historical) KR=0.299;KB=0.114

BT601

BT.601-7 525 (SMPTE 170 M) KR=0.299;KB=0.114

SMPTE240

SMPTE 240 M KR=0.212;KB=0.087

YCgCo

YCgCo

BT2020NCL

BT.2020 non-constant luminance, BT.2100 YCbCr

BT2020CL

BT.2020 constant luminance

SMPTE2085

SMPTE ST 2085 YDzDx

ChromatNCL

Chromaticity-derived non-constant luminance

ChromatCL

Chromaticity-derived constant luminance

ICtCp

BT.2020 ICtCp

Trait Implementations

impl Clone for MatrixCoefficients[src]

impl Copy for MatrixCoefficients[src]

impl Debug for MatrixCoefficients[src]

impl Eq for MatrixCoefficients[src]

impl PartialEq<MatrixCoefficients> for MatrixCoefficients[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.