OGRE 2.1
Object-Oriented Graphics Rendering Engine
|
Abstract class that defines a 'codec'. More...
#include <OgreCodec.h>
Classes | |
class | CodecData |
Public Types | |
typedef SharedPtr< CodecData > | CodecDataPtr |
typedef ConstMapIterator< CodecList > | CodecIterator |
typedef std::pair< MemoryDataStreamPtr, CodecDataPtr > | DecodeResult |
Result of a decoding; both a decoded data stream and CodecData metadata. | |
Public Member Functions | |
virtual | ~Codec () |
virtual DecodeResult | decode (DataStreamPtr &input) const =0 |
Codes the data from the input chunk into the output chunk. | |
virtual DataStreamPtr | encode (MemoryDataStreamPtr &input, CodecDataPtr &pData) const =0 |
Codes the data in the input stream and saves the result in the output stream. | |
virtual void | encodeToFile (MemoryDataStreamPtr &input, const String &outFileName, CodecDataPtr &pData) const =0 |
Codes the data in the input chunk and saves the result in the output filename provided. | |
virtual String | getDataType () const =0 |
Returns the type of the data that supported by this codec as a String. | |
virtual String | getType () const =0 |
Returns the type of the codec as a String. | |
virtual 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. | |
void | operator delete (void *ptr) |
void | operator delete (void *ptr, const char *, int, const char *) |
void | operator delete (void *ptr, void *) |
void | operator delete[] (void *ptr) |
void | operator delete[] (void *ptr, const char *, int, const char *) |
void * | operator new (size_t sz) |
void * | operator new (size_t sz, const char *file, int line, const char *func) |
operator new, with debug line info | |
void * | operator new (size_t sz, void *ptr) |
placement operator new | |
void * | operator new[] (size_t sz) |
void * | operator new[] (size_t sz, const char *file, int line, const char *func) |
array operator new, with debug line info | |
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 CodecIterator | getCodecIterator (void) |
Gets the iterator for the registered codecs. | |
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'.
typedef ConstMapIterator<CodecList> Ogre::Codec::CodecIterator |
Result of a decoding; both a decoded data stream and CodecData metadata.
|
virtual |
|
pure virtual |
Codes the data from the input chunk into the output chunk.
input | Stream containing the encoded data |
Implemented in Ogre::ASTCCodec, Ogre::DDSCodec, Ogre::ETCCodec, Ogre::FreeImageCodec, Ogre::OITDCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.
|
pure virtual |
Codes the data in the input stream and saves the result in the output stream.
Implemented in Ogre::ASTCCodec, Ogre::DDSCodec, Ogre::ETCCodec, Ogre::FreeImageCodec, Ogre::OITDCodec, Ogre::PVRTCCodec, and Ogre::STBIImageCodec.
|
pure 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 |
outFileName | The filename to write to |
pData | Extra information to be passed to the codec (codec type specific) |
Implemented in Ogre::ASTCCodec, Ogre::DDSCodec, Ogre::ETCCodec, Ogre::FreeImageCodec, Ogre::OITDCodec, Ogre::PVRTCCodec, and Ogre::STBIImageCodec.
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 |
Gets the codec registered for the passed in file extension.
|
inlinestatic |
Gets the iterator for the registered codecs.
Returns the type of the data that supported by this codec as a String.
Implemented in Ogre::ImageCodec.
|
static |
Gets the file extension list for the registered codecs.
Returns the type of the codec as a String.
Implemented in Ogre::ASTCCodec, Ogre::DDSCodec, Ogre::ETCCodec, Ogre::FreeImageCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, Ogre::EXRCodec, and Ogre::OITDCodec.
Return whether a codec is registered already.
|
inlinevirtual |
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::ASTCCodec, Ogre::DDSCodec, Ogre::ETCCodec, Ogre::FreeImageCodec, Ogre::OITDCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
operator new, with debug line info
placement operator new
|
inlineinherited |
|
inlineinherited |
array operator new, with debug line info
Registers a new codec in the database.
References Ogre::Exception::ERR_DUPLICATE_ITEM, and OGRE_EXCEPT.
Unregisters a codec from the database.