[][src]Struct ffmpeg_dev::sys::MECmpContext

#[repr(C)]
pub struct MECmpContext {
    pub sum_abs_dctelem: Option<unsafe extern "C" fn(block: *mut i16) -> c_int>,
    pub sad: [me_cmp_func; 6],
    pub sse: [me_cmp_func; 6],
    pub hadamard8_diff: [me_cmp_func; 6],
    pub dct_sad: [me_cmp_func; 6],
    pub quant_psnr: [me_cmp_func; 6],
    pub bit: [me_cmp_func; 6],
    pub rd: [me_cmp_func; 6],
    pub vsad: [me_cmp_func; 6],
    pub vsse: [me_cmp_func; 6],
    pub nsse: [me_cmp_func; 6],
    pub w53: [me_cmp_func; 6],
    pub w97: [me_cmp_func; 6],
    pub dct_max: [me_cmp_func; 6],
    pub dct264_sad: [me_cmp_func; 6],
    pub me_pre_cmp: [me_cmp_func; 6],
    pub me_cmp: [me_cmp_func; 6],
    pub me_sub_cmp: [me_cmp_func; 6],
    pub mb_cmp: [me_cmp_func; 6],
    pub ildct_cmp: [me_cmp_func; 6],
    pub frame_skip_cmp: [me_cmp_func; 6],
    pub pix_abs: [[me_cmp_func; 4]; 2],
    pub median_sad: [me_cmp_func; 6],
}

Fields

sum_abs_dctelem: Option<unsafe extern "C" fn(block: *mut i16) -> c_int>sad: [me_cmp_func; 6]sse: [me_cmp_func; 6]hadamard8_diff: [me_cmp_func; 6]dct_sad: [me_cmp_func; 6]quant_psnr: [me_cmp_func; 6]bit: [me_cmp_func; 6]rd: [me_cmp_func; 6]vsad: [me_cmp_func; 6]vsse: [me_cmp_func; 6]nsse: [me_cmp_func; 6]w53: [me_cmp_func; 6]w97: [me_cmp_func; 6]dct_max: [me_cmp_func; 6]dct264_sad: [me_cmp_func; 6]me_pre_cmp: [me_cmp_func; 6]me_cmp: [me_cmp_func; 6]me_sub_cmp: [me_cmp_func; 6]mb_cmp: [me_cmp_func; 6]ildct_cmp: [me_cmp_func; 6]frame_skip_cmp: [me_cmp_func; 6]pix_abs: [[me_cmp_func; 4]; 2]median_sad: [me_cmp_func; 6]

Trait Implementations

impl Clone for MECmpContext[src]

impl Copy for MECmpContext[src]

impl Debug for MECmpContext[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 = !

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.