pub trait IMFVideoPositionMapper_Impl: Sized {
    // Required method
    fn MapOutputCoordinateToInputStream(
        &self,
        xout: f32,
        yout: f32,
        dwoutputstreamindex: u32,
        dwinputstreamindex: u32,
        pxin: *mut f32,
        pyin: *mut f32
    ) -> Result<()>;
}

Required Methods§

fn MapOutputCoordinateToInputStream( &self, xout: f32, yout: f32, dwoutputstreamindex: u32, dwinputstreamindex: u32, pxin: *mut f32, pyin: *mut f32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§