|
AVIStreamNextKeyFrameTime
The AVIStreamNextKeyFrameTime macro returns the time of the next key frame in the stream, starting at a
given time.
AVIStreamNextKeyFrameTime(
Parameters
pavi
Handle of an open stream.
time
Position in the stream to begin searching.
Return Values
Returns the time if successful or 1 otherwise.
Remarks
The search performed by this macro includes the frame that corresponds to the
specified time.
The AVIStreamNextKeyFrameTime macro is defined as follows:
#define AVIStreamNextKeyFrameTime(pavi, time) \
AVIStreamSampleToTime(pavi, \
AVIStreamNextKeyFrame(pavi, \
AVIStreamTimeToSample(pavi, time)))
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Programmer's Reference (win32.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|