OGRE
1.11.6
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. More... | |
Public Member Functions | |
virtual | ~Codec () |
virtual DecodeResult | decode (const DataStreamPtr &input) const =0 |
Codes the data from the input chunk into the output chunk. More... | |
virtual DataStreamPtr | encode (const MemoryDataStreamPtr &input, const CodecDataPtr &pData) const =0 |
Codes the data in the input stream and saves the result in the output stream. More... | |
virtual void | encodeToFile (const MemoryDataStreamPtr &input, const String &outFileName, const CodecDataPtr &pData) const =0 |
Codes the data in the input chunk and saves the result in the output filename provided. More... | |
virtual String | getDataType () const =0 |
Returns the type of the data that supported by this codec as a String. More... | |
virtual String | getType () const =0 |
Returns the type of the codec as a String. More... | |
virtual bool | magicNumberMatch (const char *magicNumberPtr, size_t maxbytes) const |
Returns whether a magic number header matches this codec. More... | |
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. More... | |
Static Public Member Functions | |
static Codec * | getCodec (const String &extension) |
Gets the codec registered for the passed in file extension. More... | |
static Codec * | getCodec (char *magicNumberPtr, size_t maxbytes) |
Gets the codec that can handle the given 'magic' identifier. More... | |
static CodecIterator | getCodecIterator (void) |
Gets the iterator for the registered codecs. More... | |
static StringVector | getExtensions (void) |
Gets the file extension list for the registered codecs. More... | |
static bool | isCodecRegistered (const String &codecType) |
Return whether a codec is registered already. More... | |
static void | registerCodec (Codec *pCodec) |
Registers a new codec in the database. More... | |
static void | unregisterCodec (Codec *pCodec) |
Unregisters a codec from the database. More... | |
Abstract class that defines a 'codec'.
typedef SharedPtr<CodecData> Ogre::Codec::CodecDataPtr |
typedef ConstMapIterator<CodecList> Ogre::Codec::CodecIterator |
typedef std::pair<MemoryDataStreamPtr, CodecDataPtr> Ogre::Codec::DecodeResult |
Result of a decoding; both a decoded data stream and CodecData metadata.
|
virtual |
|
inlinestatic |
Registers a new codec in the database.
References Ogre::Exception::ERR_DUPLICATE_ITEM, getType(), and OGRE_EXCEPT.
|
inlinestatic |
Return whether a codec is registered already.
|
inlinestatic |
Unregisters a codec from the database.
References getType().
|
inlinestatic |
Gets the iterator for the registered codecs.
|
static |
Gets the file extension list for the registered codecs.
Gets the codec registered for the passed in file extension.
|
static |
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 |
|
pure virtual |
Codes the data in the input stream and saves the result in the output stream.
Implemented in Ogre::DDSCodec, Ogre::FreeImageCodec, Ogre::ETCCodec, Ogre::ASTCCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.
|
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::DDSCodec, Ogre::FreeImageCodec, Ogre::ETCCodec, Ogre::ASTCCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.
|
pure virtual |
Codes the data from the input chunk into the output chunk.
input | Stream containing the encoded data |
Implemented in Ogre::DDSCodec, Ogre::FreeImageCodec, Ogre::ETCCodec, Ogre::ASTCCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.
|
pure virtual |
Returns the type of the codec as a String.
Implemented in Ogre::DDSCodec, Ogre::FreeImageCodec, Ogre::ETCCodec, Ogre::ASTCCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.
Referenced by registerCodec(), and unregisterCodec().
|
pure virtual |
Returns the type of the data that supported by this codec as a String.
Implemented in Ogre::ImageCodec.
|
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::DDSCodec, Ogre::FreeImageCodec, Ogre::ETCCodec, Ogre::ASTCCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.