enum Status { NotInitialized, Opening, Ready, Starting, Playing, Seeking, Stopping, Finished, Stopped, FileNotFound, InternalError };
An enumeration listing the status of the video player for loading and playing the movie.
|
Members |
Description |
|
NotInitialized |
Open method has never been called on this file. |
|
Opening |
Open method is called. Player getting ready to play a movie. |
|
Ready |
Play method can be called on this object to play the loaded movie. |
|
Starting |
Play method has been called, but the first frame of the movie is not received yet. |
|
Playing |
The loaded movie is playing. |
|
Seeking |
Seek method has been called on the movie. |
|
Stopping |
Stop method has been called on the movie. |
|
Finished |
The playback has reached the last frame of the movie. |
|
Stopped |
The movie is stopped by calling the Stop method. |
|
FileNotFound |
Requested file not found. |
|
InternalError |
Internal player error. |
Video_Video.h