![]() |
Public API Reference |
#include <codec.h>
Inheritance diagram for iStream:
Public Methods | |
virtual void | GetStreamDescription (csStreamDescription &desc)=0 |
Retrieve descriptive stream information. More... | |
virtual bool | GotoFrame (uint32 frameindex)=0 |
Next frame to be examined at frameindex. More... | |
virtual bool | GotoTime (uint32 timeindex)=0 |
Next frame to be examined is the frame at timeindex. More... | |
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). More... | |
virtual void | NextFrame ()=0 |
Call this in your main loop between BeginDraw and EndDraw. More... |
Definition at line 176 of file codec.h.
|
Retrieve descriptive stream information.
|
|
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. |
|
Next frame to be examined is the frame at timeindex.
|
|
Call this in your main loop between BeginDraw and EndDraw. This will examine the next frame (either time or index based). |
|
When NextFrame is called either the next frame is read based on frameindex or the next frame at timeindex (bTimeSynced = true).
|