Gnash
0.8.10
|
Haiku based MediaHandler. More...
#include <MediaHandlerHaiku.h>
Public Member Functions | |
virtual std::string | description () const |
Return a description of this media handler. | |
virtual std::auto_ptr < MediaParser > | createMediaParser (std::auto_ptr< IOChannel > stream) |
Return an appropriate MediaParser for given input. | |
virtual std::auto_ptr < VideoDecoder > | createVideoDecoder (const VideoInfo &info) |
Create a VideoDecoder for decoding what's specified in the VideoInfo. | |
virtual std::auto_ptr < VideoConverter > | createVideoConverter (ImgBuf::Type4CC srcFormat, ImgBuf::Type4CC dstFormat) |
Create an VideoConverter for converting between color spaces. | |
virtual std::auto_ptr < AudioDecoder > | createAudioDecoder (const AudioInfo &info) |
Create an AudioDecoder for decoding what's specified in the AudioInfo. | |
virtual VideoInput * | getVideoInput (size_t index) |
Return a VideoInput. | |
virtual AudioInput * | getAudioInput (size_t index) |
virtual void | cameraNames (std::vector< std::string > &names) const |
Return a list of available cameras. |
Haiku based MediaHandler.
void gnash::media::haiku::MediaHandlerHaiku::cameraNames | ( | std::vector< std::string > & | names | ) | const [virtual] |
Return a list of available cameras.
This is re-generated every time the function is called.
Implements gnash::media::MediaHandler.
References QQ.
std::auto_ptr< AudioDecoder > gnash::media::haiku::MediaHandlerHaiku::createAudioDecoder | ( | const AudioInfo & | info | ) | [virtual] |
Create an AudioDecoder for decoding what's specified in the AudioInfo.
info | AudioInfo class with all the info needed to decode the sound correctly. |
Implements gnash::media::MediaHandler.
References gnash::media::AudioInfo::type, gnash::media::CODEC_TYPE_FLASH, gnash::media::MediaHandler::createFlashAudioDecoder(), and _.
std::auto_ptr< MediaParser > gnash::media::haiku::MediaHandlerHaiku::createMediaParser | ( | std::auto_ptr< IOChannel > | stream | ) | [virtual] |
Return an appropriate MediaParser for given input.
stream | Input stream, ownership transferred |
NOTE: the default implementation returns an FLVParser for FLV input or 0 for others.
Reimplemented from gnash::media::MediaHandler.
References gnash::media::MediaHandler::isFLV(), and assert.
std::auto_ptr< VideoConverter > gnash::media::haiku::MediaHandlerHaiku::createVideoConverter | ( | ImgBuf::Type4CC | srcFormat, |
ImgBuf::Type4CC | dstFormat | ||
) | [virtual] |
Create an VideoConverter for converting between color spaces.
srcFormat | The source image color space |
dstFormat | The destination image color space |
Implements gnash::media::MediaHandler.
std::auto_ptr< VideoDecoder > gnash::media::haiku::MediaHandlerHaiku::createVideoDecoder | ( | const VideoInfo & | info | ) | [virtual] |
Create a VideoDecoder for decoding what's specified in the VideoInfo.
info | VideoInfo class with all the info needed to decode the image stream correctly. |
Implements gnash::media::MediaHandler.
virtual std::string gnash::media::haiku::MediaHandlerHaiku::description | ( | ) | const [inline, virtual] |
Return a description of this media handler.
Implements gnash::media::MediaHandler.
AudioInput * gnash::media::haiku::MediaHandlerHaiku::getAudioInput | ( | size_t | index | ) | [virtual] |
Implements gnash::media::MediaHandler.
VideoInput * gnash::media::haiku::MediaHandlerHaiku::getVideoInput | ( | size_t | index | ) | [virtual] |
Return a VideoInput.
This is always owned by the MediaHandler, but will remain alive as long as it is referenced by a Camera object.
index | The index of the VideoInput to return. |
Implements gnash::media::MediaHandler.