diff options
Diffstat (limited to 'core/fxcodec/codec/ccodec_gifmodule.h')
-rw-r--r-- | core/fxcodec/codec/ccodec_gifmodule.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/fxcodec/codec/ccodec_gifmodule.h b/core/fxcodec/codec/ccodec_gifmodule.h index 886c902bba..5ceff7bc4e 100644 --- a/core/fxcodec/codec/ccodec_gifmodule.h +++ b/core/fxcodec/codec/ccodec_gifmodule.h @@ -8,6 +8,7 @@ #define CORE_FXCODEC_CODEC_CCODEC_GIFMODULE_H_ #include <memory> +#include <utility> #include "core/fxcodec/gif/cfx_gif.h" #include "core/fxcrt/fx_coordinates.h" @@ -50,9 +51,9 @@ class CCodec_GifModule { void** pal_pp, int* bg_index, CFX_DIBAttribute* pAttribute); - CFX_GifDecodeStatus LoadFrameInfo(Context* context, int* frame_num); + std::pair<CFX_GifDecodeStatus, size_t> LoadFrameInfo(Context* context); CFX_GifDecodeStatus LoadFrame(Context* context, - int frame_num, + size_t frame_num, CFX_DIBAttribute* pAttribute); }; |