SourceFrameConvertedGetByTime Method (MFLiveClass)
required format's properties for a frame
position of a frame in time. To get a next frame use "-1"
maximal wait time in milliseconds. By default use "-1".
converted frame object
additional parameters
Gets a converted to required format frame by its time. For live sources time is ignored.
Syntax
Public Overridable Sub SourceFrameConvertedGetByTime( _
   ByRef _pAVPropsOut As M_AV_PROPS, _
   ByVal _dblTimeSec As Double, _
   ByVal _rtMaxWait As Long, _
   ByRef _ppFrame As MFFrame, _
   ByVal _bsHints As String _
) 
public virtual void SourceFrameConvertedGetByTime( 
   ref M_AV_PROPS _pAVPropsOut,
   double _dblTimeSec,
   long _rtMaxWait,
   out MFFrame _ppFrame,
   string _bsHints
)
public procedure SourceFrameConvertedGetByTime( 
   var  _pAVPropsOut: M_AV_PROPS;
    _dblTimeSec: Double;
    _rtMaxWait: Int64;
   Out  _ppFrame: MFFrame;
    _bsHints: String
); virtual; 
public: virtual void SourceFrameConvertedGetByTime( 
   ref M_AV_PROPS _pAVPropsOut,
   double _dblTimeSec,
   long _rtMaxWait,
   [PARAMFLAG::Out] MFFrame* _ppFrame,
   BSTR* _bsHints
) 

Parameters

_pAVPropsOut
required format's properties for a frame
_dblTimeSec
position of a frame in time. To get a next frame use "-1"
_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 send a frame to a preview:

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.SourceFrameConvertedGetByTime(ref m_avProps, -1, -1, out pFrame, "");
m_objPreview.ReceiverFramePut(pFrame, -1, ""); // show the frame on preview
See Also

Reference

MFLiveClass Class
MFLiveClass Members