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

Required Methods§

fn NegotiateConnection( &self, piamva: Option<&IAMVideoAccelerator>, pmediatype: *const AM_MEDIA_TYPE, ) -> Result<()>

fn SetPlayerNotify(&self, phook: Option<&IWMPlayerTimestampHook>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§