#[repr(u32)]pub enum Family {
Itx = 0,
McPut = 1,
McPrep = 2,
McOther = 3,
Cdef = 4,
LoopFilter = 5,
LoopRestoration = 6,
IntraPred = 7,
FilmGrain = 8,
}Expand description
A dispatchable SIMD kernel family, at the granularity a fix would target.
MC_PUT and MC_PREP are split because they are separate kernels with
separate known drift classes (MC_PUT_MISMATCH vs MC_PREP_MISMATCH), and
MC_OTHER collects the compound-prediction/blend/warp/scale helpers that
share mc_arm.rs but not the 8-tap filter code.
Variants§
Itx = 0
McPut = 1
McPrep = 2
McOther = 3
Cdef = 4
LoopFilter = 5
LoopRestoration = 6
IntraPred = 7
FilmGrain = 8
Implementations§
Trait Implementations§
impl Copy for Family
impl Eq for Family
impl StructuralPartialEq for Family
Auto Trait Implementations§
impl Freeze for Family
impl RefUnwindSafe for Family
impl Send for Family
impl Sync for Family
impl Unpin for Family
impl UnsafeUnpin for Family
impl UnwindSafe for Family
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