[][src]Struct mp4parse::VPxConfigBox

pub struct VPxConfigBox {
    pub bit_depth: u8,
    pub colour_primaries: u8,
    pub chroma_subsampling: u8,
    pub codec_init: TryVec<u8>,
    // some fields omitted
}

Represent a Video Partition Codec Configuration 'vpcC' box (aka vp9). The meaning of each field is covered in detail in "VP Codec ISO Media File Format Binding".

Fields

bit_depth: u8

An integer that specifies the bit depth of the luma and color components. Valid values are 8, 10, and 12.

colour_primaries: u8

Really an enum defined by the "Colour primaries" section of ISO 23091-2:2019 § 8.1.

chroma_subsampling: u8

Really an enum defined by "VP Codec ISO Media File Format Binding".

codec_init: TryVec<u8>

This is not used for VP8 and VP9 . Intended for binary codec initialization data.

Trait Implementations

impl Debug for VPxConfigBox[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, 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.