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§
source§impl Clone for ChromaSampling
impl Clone for ChromaSampling
source§fn clone(&self) -> ChromaSampling
fn clone(&self) -> ChromaSampling
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 ChromaSampling
impl Debug for ChromaSampling
source§impl PartialEq<ChromaSampling> for ChromaSampling
impl PartialEq<ChromaSampling> for ChromaSampling
source§fn 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 ==.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more