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§
source§impl Clone for AVStereo3D
impl Clone for AVStereo3D
source§fn clone(&self) -> AVStereo3D
fn clone(&self) -> AVStereo3D
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for AVStereo3D
impl Debug for AVStereo3D
source§impl PartialEq<AVStereo3D> for AVStereo3D
impl PartialEq<AVStereo3D> for AVStereo3D
source§fn 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 ==.