SourceFrameConvertedGet Method (MFLiveClass)
media properties that specify required format for a frame
maximal wait time in milliseconds. By default use "-1".
converted frame object
additional parameters
Gets a next frame (that is converted to required format) from file or live source
Syntax
Public Overridable Sub SourceFrameConvertedGet( _
   ByRef _pAVPropsOut As M_AV_PROPS, _
   ByVal _rtMaxWait As Long, _
   ByRef _ppFrame As MFFrame, _
   ByVal _bsHints As String _
) 
public virtual void SourceFrameConvertedGet( 
   ref M_AV_PROPS _pAVPropsOut,
   long _rtMaxWait,
   out MFFrame _ppFrame,
   string _bsHints
)
public procedure SourceFrameConvertedGet( 
   var  _pAVPropsOut: M_AV_PROPS;
    _rtMaxWait: Int64;
   Out  _ppFrame: MFFrame;
    _bsHints: String
); virtual; 
public: virtual void SourceFrameConvertedGet( 
   ref M_AV_PROPS _pAVPropsOut,
   long _rtMaxWait,
   [PARAMFLAG::Out] MFFrame* _ppFrame,
   BSTR* _bsHints
) 

Parameters

_pAVPropsOut
media properties that specify required format for a frame
_rtMaxWait
maximal wait time in milliseconds. By default use "-1".
_ppFrame
converted frame object
_bsHints
additional parameters
Example

Here is an example of how to get a frame from a file:

m_objPreview = new MFPreviewClass();
//Configure preview
m_objPreview.PreviewWindowSet("", panelPreview.Handle.ToInt32());
m_objPreview.PreviewEnable("", 1, 1);
m_objMFReader = new MFReaderClass();
m_objMFReader.ReaderOpen(sourceFileName, "");
m_avProps = new M_AV_PROPS(); // set video format for conversion
m_avProps.vidProps.eVideoFormat = eMVideoFormat.eMVF_HD1080_5994i;
MFFrame pFrame = null;
// Get next frame
if (m_objMFReader != null)
    m_objMFReader.SourceFrameConvertedGet(ref m_avProps, -1, out pFrame, "");
m_objPreview.ReceiverFramePut(pFrame, -1, ""); // show the frame on preview
See Also

Reference

MFLiveClass Class
MFLiveClass Members