Enum aom_decode::color::ChromaSampling
source · [−]pub enum ChromaSampling {
Cs420,
Cs422,
Cs444,
Monochrome,
}Expand description
Chroma subsampling format
Variants
Cs420
4:2:0 = 2x2 pixels of luma per 1 pixel of chroma
Cs422
4:2:2 = Horizontally subsampled
Cs444
4:2:4 = Not subsampled (chroma and luma are 1:1)
Monochrome
4:0:0 Only luma (grayscale)
Trait Implementations
sourceimpl Clone for ChromaSampling
impl Clone for ChromaSampling
sourcefn clone(&self) -> ChromaSampling
fn clone(&self) -> ChromaSampling
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 ChromaSampling
impl Debug for ChromaSampling
sourceimpl PartialEq<ChromaSampling> for ChromaSampling
impl PartialEq<ChromaSampling> for ChromaSampling
sourcefn eq(&self, other: &ChromaSampling) -> bool
fn eq(&self, other: &ChromaSampling) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl Copy for ChromaSampling
impl Eq for ChromaSampling
impl StructuralEq for ChromaSampling
impl StructuralPartialEq for ChromaSampling
Auto Trait Implementations
impl RefUnwindSafe for ChromaSampling
impl Send for ChromaSampling
impl Sync for ChromaSampling
impl Unpin for ChromaSampling
impl UnwindSafe for ChromaSampling
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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