pub trait IMFCaptureRecordSink_Impl: Sized + IMFCaptureSink_Impl {
    // Required methods
    fn SetOutputByteStream(
        &self,
        pbytestream: Option<&IMFByteStream>,
        guidcontainertype: *const GUID
    ) -> Result<()>;
    fn SetOutputFileName(&self, filename: &PCWSTR) -> Result<()>;
    fn SetSampleCallback(
        &self,
        dwstreamsinkindex: u32,
        pcallback: Option<&IMFCaptureEngineOnSampleCallback>
    ) -> Result<()>;
    fn SetCustomSink(&self, pmediasink: Option<&IMFMediaSink>) -> Result<()>;
    fn GetRotation(&self, dwstreamindex: u32) -> Result<u32>;
    fn SetRotation(
        &self,
        dwstreamindex: u32,
        dwrotationvalue: u32
    ) -> Result<()>;
}

Required Methods§

fn SetOutputByteStream( &self, pbytestream: Option<&IMFByteStream>, guidcontainertype: *const GUID ) -> Result<()>

fn SetOutputFileName(&self, filename: &PCWSTR) -> Result<()>

fn SetSampleCallback( &self, dwstreamsinkindex: u32, pcallback: Option<&IMFCaptureEngineOnSampleCallback> ) -> Result<()>

fn SetCustomSink(&self, pmediasink: Option<&IMFMediaSink>) -> Result<()>

fn GetRotation(&self, dwstreamindex: u32) -> Result<u32>

fn SetRotation(&self, dwstreamindex: u32, dwrotationvalue: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§