OGRE 14.3
Object-Oriented Graphics Rendering Engine
|
Abstract class that defines a 'codec'. More...
#include <OgreCodec.h>
Public Member Functions | |
virtual | ~Codec () |
virtual void | decode (const DataStreamPtr &input, const Any &output) const =0 |
Codes the data from the input chunk into the output chunk. | |
virtual DataStreamPtr | encode (const Any &input) const |
Codes the input and saves the result in the output stream. | |
virtual void | encodeToFile (const Any &input, const String &outFileName) const |
Codes the data in the input chunk and saves the result in the output filename provided. | |
virtual String | getType () const =0 |
Returns the type of the codec as a String. | |
bool | magicNumberMatch (const char *magicNumberPtr, size_t maxbytes) const |
Returns whether a magic number header matches this codec. | |
virtual String | magicNumberToFileExt (const char *magicNumberPtr, size_t maxbytes) const =0 |
Maps a magic number header to a file extension, if this codec recognises it. | |
Static Public Member Functions | |
static Codec * | getCodec (char *magicNumberPtr, size_t maxbytes) |
Gets the codec that can handle the given 'magic' identifier. | |
static Codec * | getCodec (const String &extension) |
Gets the codec registered for the passed in file extension. | |
static StringVector | getExtensions (void) |
Gets the file extension list for the registered codecs. | |
static bool | isCodecRegistered (const String &codecType) |
Return whether a codec is registered already. | |
static void | registerCodec (Codec *pCodec) |
Registers a new codec in the database. | |
static void | unregisterCodec (Codec *pCodec) |
Unregisters a codec from the database. | |
Abstract class that defines a 'codec'.
A codec class works like a two-way filter for data - data entered on one end (the decode end) gets processed and transformed into easily usable data while data passed the other way around codes it back.
|
virtual |
Registers a new codec in the database.
Return whether a codec is registered already.
Unregisters a codec from the database.
|
static |
Gets the file extension list for the registered codecs.
Gets the codec registered for the passed in file extension.
Gets the codec that can handle the given 'magic' identifier.
magicNumberPtr | Pointer to a stream of bytes which should identify the file. Note that this may be more than needed - each codec may be looking for a different size magic number. |
maxbytes | The number of bytes passed |
|
virtual |
Codes the input and saves the result in the output stream.
Reimplemented in Ogre::FreeImageCodec, Ogre::RsImageCodec, and Ogre::STBIImageCodec.
|
virtual |
Codes the data in the input chunk and saves the result in the output filename provided.
Provided for efficiency since coding to memory is progressive therefore memory required is unknown leading to reallocations.
input | The input data (codec type specific) |
outFileName | The filename to write to |
Reimplemented in Ogre::FreeImageCodec, Ogre::RsImageCodec, and Ogre::STBIImageCodec.
|
pure virtual |
Codes the data from the input chunk into the output chunk.
input | Stream containing the encoded data |
output | codec type specific result |
Implemented in Ogre::EXRCodec, Ogre::FreeImageCodec, Ogre::RsImageCodec, and Ogre::STBIImageCodec.
Returns the type of the codec as a String.
Implemented in Ogre::EXRCodec, Ogre::FreeImageCodec, Ogre::RsImageCodec, and Ogre::STBIImageCodec.
Returns whether a magic number header matches this codec.
magicNumberPtr | Pointer to a stream of bytes which should identify the file. Note that this may be more than needed - each codec may be looking for a different size magic number. |
maxbytes | The number of bytes passed |
|
pure virtual |
Maps a magic number header to a file extension, if this codec recognises it.
magicNumberPtr | Pointer to a stream of bytes which should identify the file. Note that this may be more than needed - each codec may be looking for a different size magic number. |
maxbytes | The number of bytes passed |
Implemented in Ogre::EXRCodec, Ogre::FreeImageCodec, Ogre::RsImageCodec, and Ogre::STBIImageCodec.