pub trait IAMVideoControl_Impl: Sized {
    // Required methods
    fn GetCaps(&self, ppin: Option<&IPin>) -> Result<i32>;
    fn SetMode(&self, ppin: Option<&IPin>, mode: i32) -> Result<()>;
    fn GetMode(&self, ppin: Option<&IPin>) -> Result<i32>;
    fn GetCurrentActualFrameRate(&self, ppin: Option<&IPin>) -> Result<i64>;
    fn GetMaxAvailableFrameRate(
        &self,
        ppin: Option<&IPin>,
        iindex: i32,
        dimensions: &SIZE
    ) -> Result<i64>;
    fn GetFrameRateList(
        &self,
        ppin: Option<&IPin>,
        iindex: i32,
        dimensions: &SIZE,
        listsize: *mut i32,
        framerates: *mut *mut i64
    ) -> Result<()>;
}

Required Methods§

fn GetCaps(&self, ppin: Option<&IPin>) -> Result<i32>

fn SetMode(&self, ppin: Option<&IPin>, mode: i32) -> Result<()>

fn GetMode(&self, ppin: Option<&IPin>) -> Result<i32>

fn GetCurrentActualFrameRate(&self, ppin: Option<&IPin>) -> Result<i64>

fn GetMaxAvailableFrameRate( &self, ppin: Option<&IPin>, iindex: i32, dimensions: &SIZE ) -> Result<i64>

fn GetFrameRateList( &self, ppin: Option<&IPin>, iindex: i32, dimensions: &SIZE, listsize: *mut i32, framerates: *mut *mut i64 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§