![]() |
Theora Playback Library
1.0.0
|
Public Member Functions | |
TheoraVideoClip (TheoraDataSource *data_source, TheoraOutputMode output_mode, int nPrecachedFrames, bool usePower2Stride) | |
virtual | ~TheoraVideoClip () |
std::string | getName () |
virtual std::string | getDecoderName ()=0 |
Returns the string name of the decoder backend (eg. Theora, AVFoundation) More... | |
int | getNumDisplayedFrames () |
benchmark function More... | |
int | getNumDroppedFrames () |
benchmark function More... | |
int | getWidth () |
return width in pixels of the video clip More... | |
int | getHeight () |
return height in pixels of the video clip More... | |
int | getStride () |
return stride in pixels More... | |
TheoraTimer * | getTimer () |
retur the timer objet associated with this object More... | |
void | setTimer (TheoraTimer *timer) |
replace the timer object with a new one More... | |
virtual bool | decodeNextFrame ()=0 |
used by TheoraWorkerThread, do not call directly More... | |
void | update (float time_increase) |
advance time. TheoraVideoManager calls this More... | |
float | updateToNextFrame () |
update timer to the display time of the next frame More... | |
TheoraFrameQueue * | getFrameQueue () |
void | popFrame () |
pop the frame from the front of the FrameQueue More... | |
TheoraVideoFrame * | getNextFrame () |
Returns the first available frame in the queue or NULL if no frames are available. More... | |
virtual void | decodedAudioCheck ()=0 |
void | setAudioInterface (TheoraAudioInterface *iface) |
TheoraAudioInterface * | getAudioInterface () |
void | setNumPrecachedFrames (int n) |
resize the frame queues More... | |
int | getNumPrecachedFrames () |
returns the size of the frame queue More... | |
int | getNumReadyFrames () |
returns the number of ready frames in the frame queue More... | |
void | setAudioGain (float gain) |
if you want to adjust the audio gain. range [0,1] More... | |
float | getAudioGain () |
void | setAutoRestart (bool value) |
if you want the video to automatically and smoothly restart when the last frame is reached More... | |
bool | getAutoRestart () |
void | setPriority (float priority) |
float | getPriority () |
float | getPriorityIndex () |
Used by TheoraVideoManager to schedule work. More... | |
float | getTimePosition () |
get the current time index from the timer object More... | |
float | getDuration () |
get the duration of the movie in seconds More... | |
float | getFPS () |
return the clips' frame rate, warning, fps can be a non integer number! More... | |
int | getNumFrames () |
get the number of frames in this movie More... | |
TheoraOutputMode | getOutputMode () |
return the current output mode for this video object More... | |
void | setOutputMode (TheoraOutputMode mode) |
bool | isDone () |
void | play () |
void | pause () |
void | restart () |
bool | isPaused () |
void | stop () |
void | setPlaybackSpeed (float speed) |
float | getPlaybackSpeed () |
void | seek (float time) |
seek to a given time position More... | |
void | seekToFrame (int frame) |
seek to a given frame number More... | |
void | waitForCache (float desired_cache_factor=0.5f, float max_wait_time=1.0f) |
wait max_time for the clip to cache a given percentage of frames, factor in range [0,1] More... | |
Protected Member Functions | |
int | calculatePriority () |
void | readTheoraVorbisHeaders () |
virtual void | doSeek ()=0 |
virtual bool | _readData ()=0 |
called by WorkerThread to seek to mSeekFrame More... | |
bool | isBusy () |
virtual float | decodeAudio ()=0 |
virtual void | load (TheoraDataSource *source)=0 |
virtual void | _restart ()=0 |
Friends | |
class | TheoraWorkerThread |
class | TheoraVideoFrame |
class | TheoraVideoManager |
This object contains all data related to video playback, eg. the open source file, the frame queue etc.
TheoraVideoClip::TheoraVideoClip | ( | TheoraDataSource * | data_source, |
TheoraOutputMode | output_mode, | ||
int | nPrecachedFrames, | ||
bool | usePower2Stride | ||
) |
|
virtual |
|
protectedpure virtual |
called by WorkerThread to seek to mSeekFrame
|
protectedpure virtual |
|
protected |
Get the priority of a video clip. based on a forumula that includes user priority factor, whether the video is paused or not, how many precached frames it has etc. This function is used in TheoraVideoManager to efficiently distribute job assignments among worker threads
|
protectedpure virtual |
decodes audio from the vorbis stream and stores it in audio packets This is an internal function of TheoraVideoClip, called regularly if playing an audio enabled video clip.
|
pure virtual |
check if there is enough audio data decoded to submit to the audio interface
TheoraWorkerThread calls this
|
pure virtual |
used by TheoraWorkerThread, do not call directly
|
protectedpure virtual |
float TheoraVideoClip::getAudioGain | ( | ) |
TheoraAudioInterface* TheoraVideoClip::getAudioInterface | ( | ) |
|
inline |
|
pure virtual |
Returns the string name of the decoder backend (eg. Theora, AVFoundation)
float TheoraVideoClip::getDuration | ( | ) |
get the duration of the movie in seconds
float TheoraVideoClip::getFPS | ( | ) |
return the clips' frame rate, warning, fps can be a non integer number!
TheoraFrameQueue* TheoraVideoClip::getFrameQueue | ( | ) |
int TheoraVideoClip::getHeight | ( | ) |
return height in pixels of the video clip
std::string TheoraVideoClip::getName | ( | ) |
TheoraVideoFrame* TheoraVideoClip::getNextFrame | ( | ) |
Returns the first available frame in the queue or NULL if no frames are available.
see TheoraFrameQueue::getFirstAvailableFrame() for more details
|
inline |
benchmark function
|
inline |
benchmark function
|
inline |
get the number of frames in this movie
int TheoraVideoClip::getNumPrecachedFrames | ( | ) |
returns the size of the frame queue
int TheoraVideoClip::getNumReadyFrames | ( | ) |
returns the number of ready frames in the frame queue
TheoraOutputMode TheoraVideoClip::getOutputMode | ( | ) |
return the current output mode for this video object
float TheoraVideoClip::getPlaybackSpeed | ( | ) |
float TheoraVideoClip::getPriority | ( | ) |
float TheoraVideoClip::getPriorityIndex | ( | ) |
Used by TheoraVideoManager to schedule work.
|
inline |
return stride in pixels
If you've specified usePower2Stride when creating the TheoraVideoClip object then this value will be the next power of two size compared to width, eg: w=376, stride=512.
Otherwise, stride will be equal to width
float TheoraVideoClip::getTimePosition | ( | ) |
get the current time index from the timer object
TheoraTimer* TheoraVideoClip::getTimer | ( | ) |
retur the timer objet associated with this object
int TheoraVideoClip::getWidth | ( | ) |
return width in pixels of the video clip
|
protected |
bool TheoraVideoClip::isDone | ( | ) |
bool TheoraVideoClip::isPaused | ( | ) |
|
protectedpure virtual |
void TheoraVideoClip::pause | ( | ) |
void TheoraVideoClip::play | ( | ) |
void TheoraVideoClip::popFrame | ( | ) |
pop the frame from the front of the FrameQueue
see TheoraFrameQueue::pop() for more details
|
protected |
void TheoraVideoClip::restart | ( | ) |
void TheoraVideoClip::seek | ( | float | time | ) |
seek to a given time position
void TheoraVideoClip::seekToFrame | ( | int | frame | ) |
seek to a given frame number
void TheoraVideoClip::setAudioGain | ( | float | gain | ) |
if you want to adjust the audio gain. range [0,1]
void TheoraVideoClip::setAudioInterface | ( | TheoraAudioInterface * | iface | ) |
void TheoraVideoClip::setAutoRestart | ( | bool | value | ) |
if you want the video to automatically and smoothly restart when the last frame is reached
void TheoraVideoClip::setNumPrecachedFrames | ( | int | n | ) |
resize the frame queues
Warning: this call discards ready frames in the frame queue
void TheoraVideoClip::setOutputMode | ( | TheoraOutputMode | mode | ) |
set a new output mode
Warning: this discards the frame queue. ready frames will be lost.
void TheoraVideoClip::setPlaybackSpeed | ( | float | speed | ) |
void TheoraVideoClip::setPriority | ( | float | priority | ) |
TODO: user priority. Useful only when more than one video is being decoded
void TheoraVideoClip::setTimer | ( | TheoraTimer * | timer | ) |
replace the timer object with a new one
void TheoraVideoClip::stop | ( | ) |
void TheoraVideoClip::update | ( | float | time_increase | ) |
advance time. TheoraVideoManager calls this
float TheoraVideoClip::updateToNextFrame | ( | ) |
update timer to the display time of the next frame
useful if you want to grab frames instead of regular display
void TheoraVideoClip::waitForCache | ( | float | desired_cache_factor = 0.5f , |
float | max_wait_time = 1.0f |
||
) |
wait max_time for the clip to cache a given percentage of frames, factor in range [0,1]
|
friend |
|
friend |
|
friend |
|
protected |
|
protected |
|
protected |
|
protected |
used to detect when the video restarted
|
protected |
|
protected |
|
protected |
stores desired seek position as a frame number. next worker thread will do the seeking and reset this var to -1
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
User assigned priority. Default value is 1.
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
multiplier for audio samples. between 0 and 1
|
protected |
|
protected |
|
protected |
|
protected |
counter used by TheoraVideoManager to schedule workload
|
protected |
|
protected |
|
protected |
|
protected |
syncs audio decoding and extraction
|
protected |
|
protected |
|
protected |
|
protected |