Struct ffmpeg_sys_next::AVComponentDescriptor
source · [−]#[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_intWhich of the 4 planes contains the component.
step: c_intNumber of elements between 2 horizontally consecutive pixels. Elements are bits for bitstream formats, bytes otherwise.
offset: c_intNumber of elements before the component of the first pixel. Elements are bits for bitstream formats, bytes otherwise.
shift: c_intNumber of least significant bits that must be shifted away to get the value.
depth: c_intNumber of bits in the component.
step_minus1: c_intdeprecated, use step instead
depth_minus1: c_intdeprecated, use depth instead
offset_plus1: c_intdeprecated, use offset instead
Trait Implementations
sourceimpl Clone for AVComponentDescriptor
impl Clone for AVComponentDescriptor
sourcefn clone(&self) -> AVComponentDescriptor
fn clone(&self) -> AVComponentDescriptor
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 AVComponentDescriptor
impl Debug for AVComponentDescriptor
sourceimpl PartialEq<AVComponentDescriptor> for AVComponentDescriptor
impl PartialEq<AVComponentDescriptor> for AVComponentDescriptor
sourcefn eq(&self, other: &AVComponentDescriptor) -> bool
fn eq(&self, other: &AVComponentDescriptor) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AVComponentDescriptor) -> bool
fn ne(&self, other: &AVComponentDescriptor) -> bool
This method tests for !=.
impl Copy for AVComponentDescriptor
impl Eq for AVComponentDescriptor
impl StructuralEq for AVComponentDescriptor
impl StructuralPartialEq for AVComponentDescriptor
Auto Trait Implementations
impl RefUnwindSafe for AVComponentDescriptor
impl Send for AVComponentDescriptor
impl Sync for AVComponentDescriptor
impl Unpin for AVComponentDescriptor
impl UnwindSafe for AVComponentDescriptor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more