pub trait IWMCodecProps_Impl: Sized {
    // Required methods
    fn GetFormatProp(
        &self,
        pmt: *mut DMO_MEDIA_TYPE,
        pszname: &PCWSTR,
        ptype: *mut WMT_PROP_DATATYPE,
        pvalue: *mut u8,
        pdwsize: *mut u32
    ) -> Result<()>;
    fn GetCodecProp(
        &self,
        dwformat: u32,
        pszname: &PCWSTR,
        ptype: *mut WMT_PROP_DATATYPE,
        pvalue: *mut u8,
        pdwsize: *mut u32
    ) -> Result<()>;
}

Required Methods§

fn GetFormatProp( &self, pmt: *mut DMO_MEDIA_TYPE, pszname: &PCWSTR, ptype: *mut WMT_PROP_DATATYPE, pvalue: *mut u8, pdwsize: *mut u32 ) -> Result<()>

fn GetCodecProp( &self, dwformat: u32, pszname: &PCWSTR, ptype: *mut WMT_PROP_DATATYPE, pvalue: *mut u8, pdwsize: *mut u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§