| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef CORE_FXCODEC_CODEC_CCODEC_FAXMODULE_H_ | 7 #ifndef CORE_FXCODEC_CODEC_CCODEC_FAXMODULE_H_ |
| 8 #define CORE_FXCODEC_CODEC_CCODEC_FAXMODULE_H_ | 8 #define CORE_FXCODEC_CODEC_CCODEC_FAXMODULE_H_ |
| 9 | 9 |
| 10 #include <memory> |
| 11 |
| 10 #include "core/fxcrt/fx_system.h" | 12 #include "core/fxcrt/fx_system.h" |
| 11 | 13 |
| 12 class CCodec_ScanlineDecoder; | 14 class CCodec_ScanlineDecoder; |
| 13 | 15 |
| 14 class CCodec_FaxModule { | 16 class CCodec_FaxModule { |
| 15 public: | 17 public: |
| 16 CCodec_ScanlineDecoder* CreateDecoder(const uint8_t* src_buf, | 18 std::unique_ptr<CCodec_ScanlineDecoder> CreateDecoder(const uint8_t* src_buf, |
| 17 uint32_t src_size, | 19 uint32_t src_size, |
| 18 int width, | 20 int width, |
| 19 int height, | 21 int height, |
| 20 int K, | 22 int K, |
| 21 bool EndOfLine, | 23 bool EndOfLine, |
| 22 bool EncodedByteAlign, | 24 bool EncodedByteAlign, |
| 23 bool BlackIs1, | 25 bool BlackIs1, |
| 24 int Columns, | 26 int Columns, |
| 25 int Rows); | 27 int Rows); |
| 26 }; | 28 }; |
| 27 | 29 |
| 28 #endif // CORE_FXCODEC_CODEC_CCODEC_FAXMODULE_H_ | 30 #endif // CORE_FXCODEC_CODEC_CCODEC_FAXMODULE_H_ |
| OLD | NEW |