Struct ffmpeg_sys_next::AVStereo3D
source · [−]#[repr(C)]pub struct AVStereo3D {
pub type_: AVStereo3DType,
pub flags: c_int,
pub view: AVStereo3DView,
}Expand description
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_: AVStereo3DTypeHow views are packed within the video.
flags: c_intAdditional information about the frame packing.
view: AVStereo3DViewDetermines which views are packed.
Trait Implementations
sourceimpl Clone for AVStereo3D
impl Clone for AVStereo3D
sourcefn clone(&self) -> AVStereo3D
fn clone(&self) -> AVStereo3D
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AVStereo3D
impl Debug for AVStereo3D
sourceimpl PartialEq<AVStereo3D> for AVStereo3D
impl PartialEq<AVStereo3D> for AVStereo3D
sourcefn eq(&self, other: &AVStereo3D) -> bool
fn eq(&self, other: &AVStereo3D) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AVStereo3D) -> bool
fn ne(&self, other: &AVStereo3D) -> bool
This method tests for !=.
impl Copy for AVStereo3D
impl Eq for AVStereo3D
impl StructuralEq for AVStereo3D
impl StructuralPartialEq for AVStereo3D
Auto Trait Implementations
impl RefUnwindSafe for AVStereo3D
impl Send for AVStereo3D
impl Sync for AVStereo3D
impl Unpin for AVStereo3D
impl UnwindSafe for AVStereo3D
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more