[][src]Enum stainless_ffmpeg_sys::AVStereo3DType

#[repr(u32)]pub enum AVStereo3DType {
    AV_STEREO3D_2D,
    AV_STEREO3D_SIDEBYSIDE,
    AV_STEREO3D_TOPBOTTOM,
    AV_STEREO3D_FRAMESEQUENCE,
    AV_STEREO3D_CHECKERBOARD,
    AV_STEREO3D_SIDEBYSIDE_QUINCUNX,
    AV_STEREO3D_LINES,
    AV_STEREO3D_COLUMNS,
}

List of possible 3D Types

Variants

AV_STEREO3D_2D

Video is not stereoscopic (and metadata has to be there).

AV_STEREO3D_SIDEBYSIDE

Views are next to each other.

@code{.unparsed} LLLLRRRR LLLLRRRR LLLLRRRR ... @endcode

AV_STEREO3D_TOPBOTTOM

Views are on top of each other.

@code{.unparsed} LLLLLLLL LLLLLLLL RRRRRRRR RRRRRRRR @endcode

AV_STEREO3D_FRAMESEQUENCE

Views are alternated temporally.

@code{.unparsed} frame0 frame1 frame2 ... LLLLLLLL RRRRRRRR LLLLLLLL LLLLLLLL RRRRRRRR LLLLLLLL LLLLLLLL RRRRRRRR LLLLLLLL ... ... ... @endcode

AV_STEREO3D_CHECKERBOARD

Views are packed in a checkerboard-like structure per pixel.

@code{.unparsed} LRLRLRLR RLRLRLRL LRLRLRLR ... @endcode

AV_STEREO3D_SIDEBYSIDE_QUINCUNX

Views are next to each other, but when upscaling apply a checkerboard pattern.

@code{.unparsed} LLLLRRRR L L L L R R R R LLLLRRRR => L L L L R R R R LLLLRRRR L L L L R R R R LLLLRRRR L L L L R R R R @endcode

AV_STEREO3D_LINES

Views are packed per line, as if interlaced.

@code{.unparsed} LLLLLLLL RRRRRRRR LLLLLLLL ... @endcode

AV_STEREO3D_COLUMNS

Views are packed per column.

@code{.unparsed} LRLRLRLR LRLRLRLR LRLRLRLR ... @endcode

Trait Implementations

impl Clone for AVStereo3DType[src]

impl Copy for AVStereo3DType[src]

impl Debug for AVStereo3DType[src]

impl Eq for AVStereo3DType[src]

impl Hash for AVStereo3DType[src]

impl PartialEq<AVStereo3DType> for AVStereo3DType[src]

impl StructuralEq for AVStereo3DType[src]

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