#[repr(C)]pub struct MpegVideoDSPContext {
pub gmc1: Option<unsafe extern "C" fn(dst: *mut u8, src: *mut u8, srcStride: c_int, h: c_int, x16: c_int, y16: c_int, rounder: c_int)>,
pub gmc: Option<unsafe extern "C" fn(dst: *mut u8, src: *mut u8, stride: c_int, h: c_int, ox: c_int, oy: c_int, dxx: c_int, dxy: c_int, dyx: c_int, dyy: c_int, shift: c_int, r: c_int, width: c_int, height: c_int)>,
}
Fields§
§gmc1: Option<unsafe extern "C" fn(dst: *mut u8, src: *mut u8, srcStride: c_int, h: c_int, x16: c_int, y16: c_int, rounder: c_int)>
translational global motion compensation.
gmc: Option<unsafe extern "C" fn(dst: *mut u8, src: *mut u8, stride: c_int, h: c_int, ox: c_int, oy: c_int, dxx: c_int, dxy: c_int, dyx: c_int, dyy: c_int, shift: c_int, r: c_int, width: c_int, height: c_int)>
global motion compensation.
Trait Implementations§
Source§impl Clone for MpegVideoDSPContext
impl Clone for MpegVideoDSPContext
Source§fn clone(&self) -> MpegVideoDSPContext
fn clone(&self) -> MpegVideoDSPContext
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 moreimpl Copy for MpegVideoDSPContext
Auto Trait Implementations§
impl Freeze for MpegVideoDSPContext
impl RefUnwindSafe for MpegVideoDSPContext
impl Send for MpegVideoDSPContext
impl Sync for MpegVideoDSPContext
impl Unpin for MpegVideoDSPContext
impl UnwindSafe for MpegVideoDSPContext
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