![]() |
Theora Playback Library
1.0.0
|
Public Member Functions | |
TheoraVideoManager (int num_worker_threads=1) | |
virtual | ~TheoraVideoManager () |
TheoraVideoClip * | getVideoClipByName (std::string name) |
search registered clips by name More... | |
TheoraVideoClip * | createVideoClip (std::string filename, TheoraOutputMode output_mode=TH_RGB, int numPrecachedOverride=0, bool usePower2Stride=0) |
TheoraVideoClip * | createVideoClip (TheoraDataSource *data_source, TheoraOutputMode output_mode=TH_RGB, int numPrecachedOverride=0, bool usePower2Stride=0) |
void | update (float time_increase) |
void | destroyVideoClip (TheoraVideoClip *clip) |
void | setAudioInterfaceFactory (TheoraAudioInterfaceFactory *factory) |
TheoraAudioInterfaceFactory * | getAudioInterfaceFactory () |
int | getNumWorkerThreads () |
void | setNumWorkerThreads (int n) |
void | setDefaultNumPrecachedFrames (int n) |
int | getDefaultNumPrecachedFrames () |
void | logMessage (std::string msg) |
used by libtheoraplayer functions More... | |
std::string | getVersionString () |
get nicely formated version string More... | |
void | getVersion (int *a, int *b, int *c) |
get version numbers More... | |
std::vector< std::string > | getSupportedDecoders () |
returns the supported decoders (eg. Theora, AVFoundation...) More... | |
Static Public Member Functions | |
static TheoraVideoManager & | getSingleton () |
get the global reference to the manager instance More... | |
static TheoraVideoManager * | getSingletonPtr () |
get the global pointer to the manager instance More... | |
static void | setLogFunction (void(*fn)(std::string)) |
you can set your own log function to recieve theora's log calls More... | |
Protected Types | |
typedef std::vector < TheoraVideoClip * > | ClipList |
typedef std::vector < TheoraWorkerThread * > | ThreadList |
Protected Member Functions | |
void | createWorkerThreads (int n) |
void | destroyWorkerThreads () |
float | calcClipWorkTime (TheoraVideoClip *clip) |
TheoraVideoClip * | requestWork (TheoraWorkerThread *caller) |
Protected Attributes | |
ThreadList | mWorkerThreads |
stores pointers to worker threads which are decoding video and audio More... | |
ClipList | mClips |
stores pointers to created video clips More... | |
std::list< TheoraVideoClip * > | mWorkLog |
stores pointer to clips that were docoded in the past in order to achieve fair scheduling More... | |
int | mDefaultNumPrecachedFrames |
TheoraMutex * | mWorkMutex |
TheoraAudioInterfaceFactory * | mAudioFactory |
Friends | |
class | TheoraWorkerThread |
This is the main singleton class that handles all playback/sync operations
|
protected |
|
protected |
TheoraVideoManager::TheoraVideoManager | ( | int | num_worker_threads = 1 | ) |
|
virtual |
|
protected |
TheoraVideoClip* TheoraVideoManager::createVideoClip | ( | std::string | filename, |
TheoraOutputMode | output_mode = TH_RGB , |
||
int | numPrecachedOverride = 0 , |
||
bool | usePower2Stride = 0 |
||
) |
TheoraVideoClip* TheoraVideoManager::createVideoClip | ( | TheoraDataSource * | data_source, |
TheoraOutputMode | output_mode = TH_RGB , |
||
int | numPrecachedOverride = 0 , |
||
bool | usePower2Stride = 0 |
||
) |
|
protected |
void TheoraVideoManager::destroyVideoClip | ( | TheoraVideoClip * | clip | ) |
|
protected |
TheoraAudioInterfaceFactory* TheoraVideoManager::getAudioInterfaceFactory | ( | ) |
|
inline |
int TheoraVideoManager::getNumWorkerThreads | ( | ) |
|
static |
get the global reference to the manager instance
|
static |
get the global pointer to the manager instance
std::vector<std::string> TheoraVideoManager::getSupportedDecoders | ( | ) |
returns the supported decoders (eg. Theora, AVFoundation...)
void TheoraVideoManager::getVersion | ( | int * | a, |
int * | b, | ||
int * | c | ||
) |
get version numbers
if c is negative, it means it's a release candidate -c
std::string TheoraVideoManager::getVersionString | ( | ) |
get nicely formated version string
TheoraVideoClip* TheoraVideoManager::getVideoClipByName | ( | std::string | name | ) |
search registered clips by name
void TheoraVideoManager::logMessage | ( | std::string | msg | ) |
used by libtheoraplayer functions
|
protected |
Called by TheoraWorkerThread to request a TheoraVideoClip instance to work on decoding
void TheoraVideoManager::setAudioInterfaceFactory | ( | TheoraAudioInterfaceFactory * | factory | ) |
|
inline |
|
static |
you can set your own log function to recieve theora's log calls
This way you can integrate libtheoraplayer's log messages in your own logging system, prefix them, mute them or whatever you want
void TheoraVideoManager::setNumWorkerThreads | ( | int | n | ) |
void TheoraVideoManager::update | ( | float | time_increase | ) |
|
friend |
|
protected |
|
protected |
stores pointers to created video clips
|
protected |
|
protected |
stores pointers to worker threads which are decoding video and audio
|
protected |
stores pointer to clips that were docoded in the past in order to achieve fair scheduling
|
protected |