windows::Win32::Media::WindowsMediaFormat

Trait IWMWriterPreprocess_Impl

pub trait IWMWriterPreprocess_Impl: IUnknownImpl {
    // Required methods
    fn GetMaxPreprocessingPasses(
        &self,
        dwinputnum: u32,
        dwflags: u32,
    ) -> Result<u32>;
    fn SetNumPreprocessingPasses(
        &self,
        dwinputnum: u32,
        dwflags: u32,
        dwnumpasses: u32,
    ) -> Result<()>;
    fn BeginPreprocessingPass(
        &self,
        dwinputnum: u32,
        dwflags: u32,
    ) -> Result<()>;
    fn PreprocessSample(
        &self,
        dwinputnum: u32,
        cnssampletime: u64,
        dwflags: u32,
        psample: Ref<'_, INSSBuffer>,
    ) -> Result<()>;
    fn EndPreprocessingPass(&self, dwinputnum: u32, dwflags: u32) -> Result<()>;
}

Required Methods§

fn GetMaxPreprocessingPasses( &self, dwinputnum: u32, dwflags: u32, ) -> Result<u32>

fn SetNumPreprocessingPasses( &self, dwinputnum: u32, dwflags: u32, dwnumpasses: u32, ) -> Result<()>

fn BeginPreprocessingPass(&self, dwinputnum: u32, dwflags: u32) -> Result<()>

fn PreprocessSample( &self, dwinputnum: u32, cnssampletime: u64, dwflags: u32, psample: Ref<'_, INSSBuffer>, ) -> Result<()>

fn EndPreprocessingPass(&self, dwinputnum: u32, dwflags: u32) -> Result<()>

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§