diff options
Diffstat (limited to 'core/fxcodec/codec/ccodec_tiffmodule.h')
-rw-r--r-- | core/fxcodec/codec/ccodec_tiffmodule.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/core/fxcodec/codec/ccodec_tiffmodule.h b/core/fxcodec/codec/ccodec_tiffmodule.h index be791e5cc2..73d9c37992 100644 --- a/core/fxcodec/codec/ccodec_tiffmodule.h +++ b/core/fxcodec/codec/ccodec_tiffmodule.h @@ -7,27 +7,31 @@ #ifndef CORE_FXCODEC_CODEC_CCODEC_TIFFMODULE_H_ #define CORE_FXCODEC_CODEC_CCODEC_TIFFMODULE_H_ +#include <memory> + #include "core/fxcrt/cfx_retain_ptr.h" #include "core/fxcrt/fx_system.h" #include "core/fxge/dib/cfx_dibitmap.h" -class CCodec_TiffContext; class CFX_DIBAttribute; class CCodec_TiffModule { public: - CCodec_TiffContext* CreateDecoder( + class Context { + public: + virtual ~Context() {} + }; + + std::unique_ptr<Context> CreateDecoder( const CFX_RetainPtr<IFX_SeekableReadStream>& file_ptr); - bool LoadFrameInfo(CCodec_TiffContext* ctx, + bool LoadFrameInfo(Context* ctx, int32_t frame, int32_t* width, int32_t* height, int32_t* comps, int32_t* bpc, CFX_DIBAttribute* pAttribute); - bool Decode(CCodec_TiffContext* ctx, - const CFX_RetainPtr<CFX_DIBitmap>& pDIBitmap); - void DestroyDecoder(CCodec_TiffContext* ctx); + bool Decode(Context* ctx, const CFX_RetainPtr<CFX_DIBitmap>& pDIBitmap); }; #endif // CORE_FXCODEC_CODEC_CCODEC_TIFFMODULE_H_ |