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 <vector> | 11 #include <vector> |
12 | 12 |
13 #include "../fxcrt/fx_basic.h" | 13 #include "core/include/fxcrt/fx_basic.h" |
14 #include "fx_codec_def.h" | 14 #include "fx_codec_def.h" |
15 #include "third_party/base/nonstd_unique_ptr.h" | 15 #include "third_party/base/nonstd_unique_ptr.h" |
16 | 16 |
17 #include "../fxcrt/fx_coordinates.h" // For FX_RECT. | 17 #include "../fxcrt/fx_coordinates.h" // For FX_RECT. |
18 | 18 |
19 class CFX_DIBSource; | 19 class CFX_DIBSource; |
20 class CJPX_Decoder; | 20 class CJPX_Decoder; |
21 class CPDF_PrivateData; | 21 class CPDF_PrivateData; |
22 class CPDF_StreamAcc; | 22 class CPDF_StreamAcc; |
23 class ICodec_BasicModule; | 23 class ICodec_BasicModule; |
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 FX_BOOL MD5ComputeID(const void* buf, FX_DWORD dwSize, uint8_t ID[16]); | 530 FX_BOOL MD5ComputeID(const void* buf, FX_DWORD dwSize, uint8_t ID[16]); |
531 void FaxG4Decode(const uint8_t* src_buf, | 531 void FaxG4Decode(const uint8_t* src_buf, |
532 FX_DWORD src_size, | 532 FX_DWORD src_size, |
533 int* pbitpos, | 533 int* pbitpos, |
534 uint8_t* dest_buf, | 534 uint8_t* dest_buf, |
535 int width, | 535 int width, |
536 int height, | 536 int height, |
537 int pitch); | 537 int pitch); |
538 | 538 |
539 #endif // CORE_INCLUDE_FXCODEC_FX_CODEC_H_ | 539 #endif // CORE_INCLUDE_FXCODEC_FX_CODEC_H_ |
OLD | NEW |