pub trait IMFMediaSourceEx_Impl: Sized + IMFMediaSource_Impl {
    // Required methods
    fn GetSourceAttributes(&self) -> Result<IMFAttributes>;
    fn GetStreamAttributes(
        &self,
        dwstreamidentifier: u32
    ) -> Result<IMFAttributes>;
    fn SetD3DManager(&self, pmanager: Option<&IUnknown>) -> Result<()>;
}

Required Methods§

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

fn GetStreamAttributes(&self, dwstreamidentifier: u32) -> Result<IMFAttributes>

fn SetD3DManager(&self, pmanager: Option<&IUnknown>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§