pub trait IMFSensorTransformFactory_Impl: Sized {
    // Required methods
    fn GetFactoryAttributes(&self) -> Result<IMFAttributes>;
    fn InitializeFactory(
        &self,
        dwmaxtransformcount: u32,
        psensordevices: Option<&IMFCollection>,
        pattributes: Option<&IMFAttributes>
    ) -> Result<()>;
    fn GetTransformCount(&self) -> Result<u32>;
    fn GetTransformInformation(
        &self,
        transformindex: u32,
        pguidtransformid: *mut GUID,
        ppattributes: *mut Option<IMFAttributes>,
        ppstreaminformation: *mut Option<IMFCollection>
    ) -> Result<()>;
    fn CreateTransform(
        &self,
        guidsensortransformid: *const GUID,
        pattributes: Option<&IMFAttributes>
    ) -> Result<IMFDeviceTransform>;
}

Required Methods§

fn GetFactoryAttributes(&self) -> Result<IMFAttributes>

fn InitializeFactory( &self, dwmaxtransformcount: u32, psensordevices: Option<&IMFCollection>, pattributes: Option<&IMFAttributes> ) -> Result<()>

fn GetTransformCount(&self) -> Result<u32>

fn GetTransformInformation( &self, transformindex: u32, pguidtransformid: *mut GUID, ppattributes: *mut Option<IMFAttributes>, ppstreaminformation: *mut Option<IMFCollection> ) -> Result<()>

fn CreateTransform( &self, guidsensortransformid: *const GUID, pattributes: Option<&IMFAttributes> ) -> Result<IMFDeviceTransform>

Object Safety§

This trait is not object safe.

Implementors§