OGRE 2.1
Object-Oriented Graphics Rendering Engine
|
Codec specialized in images loaded using FreeImage. More...
#include <OgreFreeImageCodec.h>
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 | |
FreeImageCodec (const String &type, unsigned int fiType) | |
virtual | ~FreeImageCodec () |
DecodeResult | decode (DataStreamPtr &input) const |
Codes the data from the input chunk into the output chunk. | |
DataStreamPtr | encode (MemoryDataStreamPtr &input, CodecDataPtr &pData) const |
Codes the data in the input stream and saves the result in the output stream. | |
void | encodeToFile (MemoryDataStreamPtr &input, const String &outFileName, CodecDataPtr &pData) const |
Codes the data in the input chunk and saves the result in the output filename provided. | |
String | getDataType () const |
Returns the type of the data that supported by this codec as a String. | |
virtual String | getType () const |
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. | |
String | magicNumberToFileExt (const char *magicNumberPtr, size_t maxbytes) const |
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 | shutdown (void) |
Static method to shutdown FreeImage and unregister the FreeImage codecs. | |
static void | startup (void) |
Static method to startup FreeImage and register the FreeImage codecs. | |
static void | unregisterCodec (Codec *pCodec) |
Unregisters a codec from the database. | |
Codec specialized in images loaded using FreeImage.
|
inherited |
|
inherited |
|
inherited |
Result of a decoding; both a decoded data stream and CodecData metadata.
|
inlinevirtual |
|
virtual |
Codes the data from the input chunk into the output chunk.
input | Stream containing the encoded data |
Implements Ogre::Codec.
|
virtual |
Codes the data in the input stream and saves the result in the output stream.
Implements Ogre::Codec.
|
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) |
Implements Ogre::Codec.
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.
|
inlinestaticinherited |
Gets the iterator for the registered codecs.
|
inlinevirtualinherited |
Returns the type of the data that supported by this codec as a String.
Implements Ogre::Codec.
|
staticinherited |
Gets the file extension list for the registered codecs.
Returns the type of the codec as a String.
Implements Ogre::Codec.
Return whether a codec is registered already.
|
inlinevirtualinherited |
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 |
|
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 |
Implements Ogre::Codec.
|
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.
Static method to shutdown FreeImage and unregister the FreeImage codecs.
Static method to startup FreeImage and register the FreeImage codecs.
Unregisters a codec from the database.