pub trait IMFVideoMediaType_Impl: Sized + IMFMediaType_Impl {
    // Required methods
    fn GetVideoFormat(&self) -> *mut MFVIDEOFORMAT;
    fn GetVideoRepresentation(
        &self,
        guidrepresentation: &GUID,
        ppvrepresentation: *mut *mut c_void,
        lstride: i32
    ) -> Result<()>;
}

Required Methods§

fn GetVideoFormat(&self) -> *mut MFVIDEOFORMAT

fn GetVideoRepresentation( &self, guidrepresentation: &GUID, ppvrepresentation: *mut *mut c_void, lstride: i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§