|
| EXRCodec () |
|
virtual | ~EXRCodec () |
|
void | decode (const DataStreamPtr &input, const Any &output) const override |
| Codes the data from the input chunk into the output chunk.
|
|
String | getType () const override |
| Returns the type of the codec as a String.
|
|
String | magicNumberToFileExt (const char *magicNumberPtr, size_t maxbytes) const override |
| Maps a magic number header to a file extension, if this codec recognises it.
|
|
virtual | ~ImageCodec () |
|
virtual DecodeResult | decode (const DataStreamPtr &input) const |
|
void | decode (const DataStreamPtr &input, const Any &output) const override |
| Codes the data from the input chunk into the output chunk.
|
|
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.
|
|
DataStreamPtr | encode (const Any &input) const override |
| Codes the input and saves the result in the output stream.
|
|
virtual DataStreamPtr | encode (const MemoryDataStreamPtr &input, const CodecDataPtr &pData) const |
|
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.
|
|
void | encodeToFile (const Any &input, const String &outFileName) const override |
| Codes the data in the input chunk and saves the result in the output filename provided.
|
|
virtual void | encodeToFile (const MemoryDataStreamPtr &input, const String &outFileName, const CodecDataPtr &pData) const |
|
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.
|
|