OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 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_INCLUDE_FXCODEC_FX_CODEC_H_ | 7 #ifndef CORE_INCLUDE_FXCODEC_FX_CODEC_H_ |
8 #define CORE_INCLUDE_FXCODEC_FX_CODEC_H_ | 8 #define CORE_INCLUDE_FXCODEC_FX_CODEC_H_ |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <memory> | 11 #include <memory> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "core/include/fxcodec/fx_codec_def.h" | 14 #include "core/include/fxcodec/fx_codec_def.h" |
15 #include "core/include/fxcrt/fx_basic.h" | 15 #include "core/include/fxcrt/fx_basic.h" |
16 #include "core/include/fxcrt/fx_coordinates.h" // For FX_RECT. | 16 #include "core/include/fxcrt/fx_coordinates.h" // For FX_RECT. |
17 | 17 |
18 class CFX_DIBSource; | 18 class CFX_DIBSource; |
19 class CJPX_Decoder; | 19 class CJPX_Decoder; |
20 class CPDF_ColorSpace; | 20 class CPDF_ColorSpace; |
21 class CPDF_PrivateData; | |
22 class CPDF_StreamAcc; | 21 class CPDF_StreamAcc; |
23 class ICodec_BasicModule; | 22 class ICodec_BasicModule; |
24 class ICodec_FaxModule; | 23 class ICodec_FaxModule; |
25 class ICodec_FlateModule; | 24 class ICodec_FlateModule; |
26 class ICodec_IccModule; | 25 class ICodec_IccModule; |
27 class ICodec_Jbig2Encoder; | 26 class ICodec_Jbig2Encoder; |
28 class ICodec_Jbig2Module; | 27 class ICodec_Jbig2Module; |
29 class ICodec_JpegModule; | 28 class ICodec_JpegModule; |
30 class ICodec_JpxModule; | 29 class ICodec_JpxModule; |
31 class ICodec_ScanlineDecoder; | 30 class ICodec_ScanlineDecoder; |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 FX_BOOL MD5ComputeID(const void* buf, FX_DWORD dwSize, uint8_t ID[16]); | 548 FX_BOOL MD5ComputeID(const void* buf, FX_DWORD dwSize, uint8_t ID[16]); |
550 void FaxG4Decode(const uint8_t* src_buf, | 549 void FaxG4Decode(const uint8_t* src_buf, |
551 FX_DWORD src_size, | 550 FX_DWORD src_size, |
552 int* pbitpos, | 551 int* pbitpos, |
553 uint8_t* dest_buf, | 552 uint8_t* dest_buf, |
554 int width, | 553 int width, |
555 int height, | 554 int height, |
556 int pitch); | 555 int pitch); |
557 | 556 |
558 #endif // CORE_INCLUDE_FXCODEC_FX_CODEC_H_ | 557 #endif // CORE_INCLUDE_FXCODEC_FX_CODEC_H_ |
OLD | NEW |