Enum vp9_parser::MetadataSubsampling[][src]

pub enum MetadataSubsampling {
    Unknown,
    Yuv420,
    Yuv420Colocated,
    Yuv422,
    Yuv444,
}

Chroma subsampling as defined in the Metadata

Variants

Unknown

Unknown.

Yuv420

4:2:0 - Subsampling along both x and y axis.

Yuv420Colocated

4:2:0 - Chroma subsampling colocated with (0,0) luma.

Yuv422

4:2:2 - Subsampling along the x axis.

Yuv444

4:4:4 - No chrome subsampling.

Trait Implementations

impl Clone for MetadataSubsampling[src]

impl Copy for MetadataSubsampling[src]

impl Debug for MetadataSubsampling[src]

impl Eq for MetadataSubsampling[src]

impl From<u8> for MetadataSubsampling[src]

impl Ord for MetadataSubsampling[src]

impl PartialEq<MetadataSubsampling> for MetadataSubsampling[src]

impl PartialOrd<MetadataSubsampling> for MetadataSubsampling[src]

impl StructuralEq for MetadataSubsampling[src]

impl StructuralPartialEq for MetadataSubsampling[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.