[][src]Struct stainless_ffmpeg_sys::AVStereo3D

#[repr(C)]pub struct AVStereo3D {
    pub type_: AVStereo3DType,
    pub flags: c_int,
    pub view: AVStereo3DView,
}

Stereo 3D type: this structure describes how two videos are packed within a single video surface, with additional information as needed.

@note The struct must be allocated with av_stereo3d_alloc() and its size is not a part of the public ABI.

Fields

type_: AVStereo3DType

How views are packed within the video.

flags: c_int

Additional information about the frame packing.

view: AVStereo3DView

Determines which views are packed.

Trait Implementations

impl Clone for AVStereo3D[src]

impl Copy for AVStereo3D[src]

impl Debug for AVStereo3D[src]

impl Eq for AVStereo3D[src]

impl PartialEq<AVStereo3D> for AVStereo3D[src]

impl StructuralEq for AVStereo3D[src]

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