windows::Win32::Media::MediaFoundation

Trait IMFTranscodeSinkInfoProvider_Impl

pub trait IMFTranscodeSinkInfoProvider_Impl: IUnknownImpl {
    // Required methods
    fn SetOutputFile(&self, pwszfilename: &PCWSTR) -> Result<()>;
    fn SetOutputByteStream(
        &self,
        pbytestreamactivate: Ref<'_, IMFActivate>,
    ) -> Result<()>;
    fn SetProfile(&self, pprofile: Ref<'_, IMFTranscodeProfile>) -> Result<()>;
    fn GetSinkInfo(&self) -> Result<MF_TRANSCODE_SINK_INFO>;
}

Required Methods§

fn SetOutputFile(&self, pwszfilename: &PCWSTR) -> Result<()>

fn SetOutputByteStream( &self, pbytestreamactivate: Ref<'_, IMFActivate>, ) -> Result<()>

fn SetProfile(&self, pprofile: Ref<'_, IMFTranscodeProfile>) -> Result<()>

fn GetSinkInfo(&self) -> Result<MF_TRANSCODE_SINK_INFO>

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§