[][src]Struct stainless_ffmpeg_sys::AVComponentDescriptor

#[repr(C)]pub struct AVComponentDescriptor {
    pub plane: c_int,
    pub step: c_int,
    pub offset: c_int,
    pub shift: c_int,
    pub depth: c_int,
    pub step_minus1: c_int,
    pub depth_minus1: c_int,
    pub offset_plus1: c_int,
}

Fields

plane: c_int

Which of the 4 planes contains the component.

step: c_int

Number of elements between 2 horizontally consecutive pixels. Elements are bits for bitstream formats, bytes otherwise.

offset: c_int

Number of elements before the component of the first pixel. Elements are bits for bitstream formats, bytes otherwise.

shift: c_int

Number of least significant bits that must be shifted away to get the value.

depth: c_int

Number of bits in the component.

step_minus1: c_int

deprecated, use step instead

depth_minus1: c_int

deprecated, use depth instead

offset_plus1: c_int

deprecated, use offset instead

Trait Implementations

impl Clone for AVComponentDescriptor[src]

impl Copy for AVComponentDescriptor[src]

impl Debug for AVComponentDescriptor[src]

impl Eq for AVComponentDescriptor[src]

impl PartialEq<AVComponentDescriptor> for AVComponentDescriptor[src]

impl StructuralEq for AVComponentDescriptor[src]

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