diff options
Diffstat (limited to 'core/fxcodec/codec')
-rw-r--r-- | core/fxcodec/codec/ccodec_bmpmodule.cpp | 1 | ||||
-rw-r--r-- | core/fxcodec/codec/ccodec_bmpmodule.h | 2 | ||||
-rw-r--r-- | core/fxcodec/codec/ccodec_gifmodule.cpp | 1 | ||||
-rw-r--r-- | core/fxcodec/codec/ccodec_gifmodule.h | 2 | ||||
-rw-r--r-- | core/fxcodec/codec/ccodec_jpegmodule.cpp | 1 | ||||
-rw-r--r-- | core/fxcodec/codec/ccodec_jpegmodule.h | 2 | ||||
-rw-r--r-- | core/fxcodec/codec/ccodec_pngmodule.cpp | 1 | ||||
-rw-r--r-- | core/fxcodec/codec/ccodec_pngmodule.h | 3 | ||||
-rw-r--r-- | core/fxcodec/codec/ccodec_progressivedecoder.cpp | 1 | ||||
-rw-r--r-- | core/fxcodec/codec/ccodec_tiffmodule.cpp | 1 | ||||
-rw-r--r-- | core/fxcodec/codec/ccodec_tiffmodule.h | 4 | ||||
-rw-r--r-- | core/fxcodec/codec/codec_module_iface.h | 4 |
12 files changed, 9 insertions, 14 deletions
diff --git a/core/fxcodec/codec/ccodec_bmpmodule.cpp b/core/fxcodec/codec/ccodec_bmpmodule.cpp index 359dbc1f90..9d03218bd6 100644 --- a/core/fxcodec/codec/ccodec_bmpmodule.cpp +++ b/core/fxcodec/codec/ccodec_bmpmodule.cpp @@ -9,6 +9,7 @@ #include <utility> #include "core/fxcodec/bmp/cfx_bmpcontext.h" +#include "core/fxcodec/codec/cfx_codec_memory.h" #include "core/fxcodec/codec/codec_int.h" #include "core/fxcodec/fx_codec.h" #include "core/fxge/fx_dib.h" diff --git a/core/fxcodec/codec/ccodec_bmpmodule.h b/core/fxcodec/codec/ccodec_bmpmodule.h index 7a560880a1..0948b0665e 100644 --- a/core/fxcodec/codec/ccodec_bmpmodule.h +++ b/core/fxcodec/codec/ccodec_bmpmodule.h @@ -11,8 +11,6 @@ #include <vector> #include "core/fxcodec/codec/codec_module_iface.h" -#include "core/fxcrt/fx_system.h" -#include "third_party/base/span.h" class CFX_DIBAttribute; diff --git a/core/fxcodec/codec/ccodec_gifmodule.cpp b/core/fxcodec/codec/ccodec_gifmodule.cpp index 4162171827..fb81c05c6d 100644 --- a/core/fxcodec/codec/ccodec_gifmodule.cpp +++ b/core/fxcodec/codec/ccodec_gifmodule.cpp @@ -6,6 +6,7 @@ #include "core/fxcodec/codec/ccodec_gifmodule.h" +#include "core/fxcodec/codec/cfx_codec_memory.h" #include "core/fxcodec/codec/codec_int.h" #include "core/fxcodec/fx_codec.h" #include "core/fxcodec/gif/cfx_gif.h" diff --git a/core/fxcodec/codec/ccodec_gifmodule.h b/core/fxcodec/codec/ccodec_gifmodule.h index 0e85998dc3..e044aa411e 100644 --- a/core/fxcodec/codec/ccodec_gifmodule.h +++ b/core/fxcodec/codec/ccodec_gifmodule.h @@ -13,8 +13,6 @@ #include "core/fxcodec/codec/codec_module_iface.h" #include "core/fxcodec/gif/cfx_gif.h" #include "core/fxcrt/fx_coordinates.h" -#include "core/fxcrt/fx_system.h" -#include "third_party/base/span.h" class CFX_DIBAttribute; diff --git a/core/fxcodec/codec/ccodec_jpegmodule.cpp b/core/fxcodec/codec/ccodec_jpegmodule.cpp index 4a6059ad18..2ba04bbbcc 100644 --- a/core/fxcodec/codec/ccodec_jpegmodule.cpp +++ b/core/fxcodec/codec/ccodec_jpegmodule.cpp @@ -12,6 +12,7 @@ #include <utility> #include "core/fxcodec/codec/ccodec_scanlinedecoder.h" +#include "core/fxcodec/codec/cfx_codec_memory.h" #include "core/fxcodec/fx_codec.h" #include "core/fxcrt/fx_memory.h" #include "core/fxcrt/fx_safe_types.h" diff --git a/core/fxcodec/codec/ccodec_jpegmodule.h b/core/fxcodec/codec/ccodec_jpegmodule.h index 258038f9cd..98c94e3b7f 100644 --- a/core/fxcodec/codec/ccodec_jpegmodule.h +++ b/core/fxcodec/codec/ccodec_jpegmodule.h @@ -11,8 +11,6 @@ #include <memory> #include "core/fxcodec/codec/codec_module_iface.h" -#include "core/fxcrt/fx_system.h" -#include "core/fxcrt/retain_ptr.h" #include "third_party/base/span.h" class CCodec_ScanlineDecoder; diff --git a/core/fxcodec/codec/ccodec_pngmodule.cpp b/core/fxcodec/codec/ccodec_pngmodule.cpp index 31de538087..dec3f7b458 100644 --- a/core/fxcodec/codec/ccodec_pngmodule.cpp +++ b/core/fxcodec/codec/ccodec_pngmodule.cpp @@ -8,6 +8,7 @@ #include <algorithm> +#include "core/fxcodec/codec/cfx_codec_memory.h" #include "core/fxcodec/codec/codec_int.h" #include "core/fxcodec/fx_codec.h" #include "core/fxcrt/unowned_ptr.h" diff --git a/core/fxcodec/codec/ccodec_pngmodule.h b/core/fxcodec/codec/ccodec_pngmodule.h index 9754cb3bbd..d7365281d1 100644 --- a/core/fxcodec/codec/ccodec_pngmodule.h +++ b/core/fxcodec/codec/ccodec_pngmodule.h @@ -10,9 +10,6 @@ #include <memory> #include "core/fxcodec/codec/codec_module_iface.h" -#include "core/fxcrt/fx_system.h" - -class CFX_DIBAttribute; class CCodec_PngModule final : public CodecModuleIface { public: diff --git a/core/fxcodec/codec/ccodec_progressivedecoder.cpp b/core/fxcodec/codec/ccodec_progressivedecoder.cpp index 9d375cbcf1..c3ab8c60c1 100644 --- a/core/fxcodec/codec/ccodec_progressivedecoder.cpp +++ b/core/fxcodec/codec/ccodec_progressivedecoder.cpp @@ -11,6 +11,7 @@ #include <utility> #include <vector> +#include "core/fxcodec/codec/cfx_codec_memory.h" #include "core/fxcodec/fx_codec.h" #include "core/fxcrt/fx_stream.h" #include "core/fxge/dib/cfx_dibitmap.h" diff --git a/core/fxcodec/codec/ccodec_tiffmodule.cpp b/core/fxcodec/codec/ccodec_tiffmodule.cpp index 15b80676b5..2c2ad14dcd 100644 --- a/core/fxcodec/codec/ccodec_tiffmodule.cpp +++ b/core/fxcodec/codec/ccodec_tiffmodule.cpp @@ -9,6 +9,7 @@ #include <limits> #include <memory> +#include "core/fxcodec/codec/cfx_codec_memory.h" #include "core/fxcodec/codec/codec_int.h" #include "core/fxcodec/fx_codec.h" #include "core/fxcrt/fx_safe_types.h" diff --git a/core/fxcodec/codec/ccodec_tiffmodule.h b/core/fxcodec/codec/ccodec_tiffmodule.h index eee24de410..1306e185a5 100644 --- a/core/fxcodec/codec/ccodec_tiffmodule.h +++ b/core/fxcodec/codec/ccodec_tiffmodule.h @@ -10,11 +10,9 @@ #include <memory> #include "core/fxcodec/codec/codec_module_iface.h" -#include "core/fxcrt/fx_system.h" -#include "core/fxcrt/retain_ptr.h" -#include "core/fxge/dib/cfx_dibitmap.h" class CFX_DIBAttribute; +class CFX_DIBitmap; class IFX_SeekableReadStream; class CCodec_TiffModule final : public CodecModuleIface { diff --git a/core/fxcodec/codec/codec_module_iface.h b/core/fxcodec/codec/codec_module_iface.h index 52cb564d9a..12a119e3e3 100644 --- a/core/fxcodec/codec/codec_module_iface.h +++ b/core/fxcodec/codec/codec_module_iface.h @@ -7,10 +7,10 @@ #ifndef CORE_FXCODEC_CODEC_CODEC_MODULE_IFACE_H_ #define CORE_FXCODEC_CODEC_CODEC_MODULE_IFACE_H_ -#include "core/fxcodec/codec/cfx_codec_memory.h" #include "core/fxcrt/fx_system.h" -#include "third_party/base/span.h" +#include "core/fxcrt/retain_ptr.h" +class CFX_CodecMemory; class CFX_DIBAttribute; class CodecModuleIface { |