pub trait IVPConfig_Impl: Sized + IVPBaseConfig_Impl {
    // Required methods
    fn IsVPDecimationAllowed(
        &self,
        pbisdecimationallowed: *mut BOOL
    ) -> Result<()>;
    fn SetScalingFactors(&self, pamvpsize: *mut AMVPSIZE) -> Result<()>;
}

Required Methods§

fn IsVPDecimationAllowed(&self, pbisdecimationallowed: *mut BOOL) -> Result<()>

fn SetScalingFactors(&self, pamvpsize: *mut AMVPSIZE) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§