#include <codec.h>
Inheritance diagram for iStream:
Public Methods | |
virtual void | GetStreamDescription (csStreamDescription &desc)=0 |
Retrieve descriptive stream information. | |
virtual bool | GotoFrame (ULong frameindex)=0 |
Next frame to be examined at frameindex. More... | |
virtual bool | GotoTime (ULong timeindex)=0 |
Next frame to be examined is the frame at timeindex. | |
virtual bool | SetPlayMethod (bool bTimeSynced)=0 |
When NextFrame is called either the next frame is read based on frameindex or the next frame at timeindex (bTimeSynced = true). | |
virtual void | NextFrame ()=0 |
Call this in your main loop between BeginDraw and EndDraw. More... |
|
Next frame to be examined at frameindex. Note that <frame> does not necessarily mean a video frame. It is the datachunk a stream is separated into by the underlying protocol/format like RIFF for instance. |
|
Call this in your main loop between BeginDraw and EndDraw. This will examine the next frame (either time or index based). |