pub trait IWMCodecAMVideoAccelerator_Impl: Sized {
    // Required methods
    fn SetAcceleratorInterface(
        &self,
        piamva: Option<&IAMVideoAccelerator>
    ) -> Result<()>;
    fn NegotiateConnection(
        &self,
        pmediatype: *const AM_MEDIA_TYPE
    ) -> Result<()>;
    fn SetPlayerNotify(
        &self,
        phook: Option<&IWMPlayerTimestampHook>
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§