[][src]Struct ffav::software::scaling::filter::Filter

pub struct Filter { /* fields omitted */ }

Implementations

impl Filter[src]

pub unsafe fn as_ptr(&self) -> *const SwsFilter[src]

pub unsafe fn as_mut_ptr(&mut self) -> *mut SwsFilter[src]

impl Filter[src]

pub fn get(
    luma_g_blur: f32,
    chroma_g_blur: f32,
    luma_sharpen: f32,
    chroma_sharpen: f32,
    chroma_h_shift: f32,
    chroma_v_shift: f32
) -> Self
[src]

pub fn new() -> Self[src]

pub fn luma_horizontal(&self) -> Vector<'_>[src]

pub fn luma_horizontal_mut(&mut self) -> Vector<'_>[src]

pub fn luma_vertical(&self) -> Vector<'_>[src]

pub fn luma_vertical_mut(&mut self) -> Vector<'_>[src]

pub fn chroma_horizontal(&self) -> Vector<'_>[src]

pub fn chroma_horizontal_mut(&mut self) -> Vector<'_>[src]

pub fn chroma_vertical(&self) -> Vector<'_>[src]

pub fn chroma_vertical_mut(&mut self) -> Vector<'_>[src]

Trait Implementations

impl Default for Filter[src]

impl Drop for Filter[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, 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.