windows::Win32::Media::MediaFoundation

Trait IMFMediaEngineClassFactoryEx_Impl

pub trait IMFMediaEngineClassFactoryEx_Impl: IMFMediaEngineClassFactory_Impl {
    // Required methods
    fn CreateMediaSourceExtension(
        &self,
        dwflags: u32,
        pattr: Ref<'_, IMFAttributes>,
    ) -> Result<IMFMediaSourceExtension>;
    fn CreateMediaKeys(
        &self,
        keysystem: &BSTR,
        cdmstorepath: &BSTR,
    ) -> Result<IMFMediaKeys>;
    fn IsTypeSupported(&self, type: &BSTR, keysystem: &BSTR) -> Result<BOOL>;
}

Required Methods§

fn CreateMediaSourceExtension( &self, dwflags: u32, pattr: Ref<'_, IMFAttributes>, ) -> Result<IMFMediaSourceExtension>

fn CreateMediaKeys( &self, keysystem: &BSTR, cdmstorepath: &BSTR, ) -> Result<IMFMediaKeys>

fn IsTypeSupported(&self, type: &BSTR, keysystem: &BSTR) -> Result<BOOL>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§