[][src]Enum ffav_sys::SwrDitherType

#[repr(u32)]pub enum SwrDitherType {
    SWR_DITHER_NONE,
    SWR_DITHER_RECTANGULAR,
    SWR_DITHER_TRIANGULAR,
    SWR_DITHER_TRIANGULAR_HIGHPASS,
    SWR_DITHER_NS,
    SWR_DITHER_NS_LIPSHITZ,
    SWR_DITHER_NS_F_WEIGHTED,
    SWR_DITHER_NS_MODIFIED_E_WEIGHTED,
    SWR_DITHER_NS_IMPROVED_E_WEIGHTED,
    SWR_DITHER_NS_SHIBATA,
    SWR_DITHER_NS_LOW_SHIBATA,
    SWR_DITHER_NS_HIGH_SHIBATA,
    SWR_DITHER_NB,
}

Dithering algorithms

Variants

SWR_DITHER_NONE
SWR_DITHER_RECTANGULAR
SWR_DITHER_TRIANGULAR
SWR_DITHER_TRIANGULAR_HIGHPASS
SWR_DITHER_NS

< not part of API/ABI

SWR_DITHER_NS_LIPSHITZ
SWR_DITHER_NS_F_WEIGHTED
SWR_DITHER_NS_MODIFIED_E_WEIGHTED
SWR_DITHER_NS_IMPROVED_E_WEIGHTED
SWR_DITHER_NS_SHIBATA
SWR_DITHER_NS_LOW_SHIBATA
SWR_DITHER_NS_HIGH_SHIBATA
SWR_DITHER_NB

< not part of API/ABI

Trait Implementations

impl Clone for SwrDitherType[src]

impl Copy for SwrDitherType[src]

impl Debug for SwrDitherType[src]

impl Eq for SwrDitherType[src]

impl Hash for SwrDitherType[src]

impl PartialEq<SwrDitherType> for SwrDitherType[src]

impl StructuralEq for SwrDitherType[src]

impl StructuralPartialEq for SwrDitherType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.