diff options
Diffstat (limited to 'core/fxcodec/codec/ccodec_basicmodule.h')
-rw-r--r-- | core/fxcodec/codec/ccodec_basicmodule.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcodec/codec/ccodec_basicmodule.h b/core/fxcodec/codec/ccodec_basicmodule.h index 015f41a4a4..b07efd884f 100644 --- a/core/fxcodec/codec/ccodec_basicmodule.h +++ b/core/fxcodec/codec/ccodec_basicmodule.h @@ -10,14 +10,14 @@ #include <memory> #include "core/fxcrt/fx_system.h" +#include "third_party/base/span.h" class CCodec_ScanlineDecoder; class CCodec_BasicModule { public: std::unique_ptr<CCodec_ScanlineDecoder> CreateRunLengthDecoder( - const uint8_t* src_buf, - uint32_t src_size, + pdfium::span<const uint8_t> src_buf, int width, int height, int nComps, |