Index: core/fpdfapi/parser/fpdf_parser_decode.h |
diff --git a/core/fpdfapi/parser/fpdf_parser_decode.h b/core/fpdfapi/parser/fpdf_parser_decode.h |
index 4d99f1559deed948acb6ac0f46571d88ffaa84ce..dc8ecf0c9b56f069247160f1325f2c953d10ec76 100644 |
--- a/core/fpdfapi/parser/fpdf_parser_decode.h |
+++ b/core/fpdfapi/parser/fpdf_parser_decode.h |
@@ -7,8 +7,11 @@ |
#ifndef CORE_FPDFAPI_PARSER_FPDF_PARSER_DECODE_H_ |
#define CORE_FPDFAPI_PARSER_FPDF_PARSER_DECODE_H_ |
+#include <memory> |
+ |
#include "core/fxcrt/fx_basic.h" |
+class CCodec_ScanlineDecoder; |
class CPDF_Dictionary; |
// Indexed by 8-bit char code, contains unicode code points. |
@@ -45,6 +48,22 @@ uint32_t RunLengthDecode(const uint8_t* src_buf, |
uint8_t*& dest_buf, |
uint32_t& dest_size); |
+std::unique_ptr<CCodec_ScanlineDecoder> FPDFAPI_CreateFaxDecoder( |
+ const uint8_t* src_buf, |
+ uint32_t src_size, |
+ int width, |
+ int height, |
+ const CPDF_Dictionary* pParams); |
+ |
+std::unique_ptr<CCodec_ScanlineDecoder> FPDFAPI_CreateFlateDecoder( |
+ const uint8_t* src_buf, |
+ uint32_t src_size, |
+ int width, |
+ int height, |
+ int nComps, |
+ int bpc, |
+ const CPDF_Dictionary* pParams); |
+ |
// Public for testing. |
uint32_t A85Decode(const uint8_t* src_buf, |
uint32_t src_size, |