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 <vector> | 10 #include <vector> |
11 | 11 |
12 #include "../fxcrt/fx_basic.h" | 12 #include "core/include/fxcrt/fx_basic.h" |
13 #include "fx_codec_def.h" | 13 #include "fx_codec_def.h" |
14 #include "third_party/base/nonstd_unique_ptr.h" | 14 #include "third_party/base/nonstd_unique_ptr.h" |
15 | 15 |
16 class CFX_DIBSource; | 16 class CFX_DIBSource; |
17 class CJPX_Decoder; | 17 class CJPX_Decoder; |
18 class CPDF_PrivateData; | 18 class CPDF_PrivateData; |
19 class CPDF_StreamAcc; | 19 class CPDF_StreamAcc; |
20 class ICodec_ScanlineDecoder; | 20 class ICodec_ScanlineDecoder; |
21 class ICodec_BasicModule; | 21 class ICodec_BasicModule; |
22 class ICodec_FaxModule; | 22 class ICodec_FaxModule; |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 | 335 |
336 void FaxG4Decode(const uint8_t* src_buf, | 336 void FaxG4Decode(const uint8_t* src_buf, |
337 FX_DWORD src_size, | 337 FX_DWORD src_size, |
338 int* pbitpos, | 338 int* pbitpos, |
339 uint8_t* dest_buf, | 339 uint8_t* dest_buf, |
340 int width, | 340 int width, |
341 int height, | 341 int height, |
342 int pitch); | 342 int pitch); |
343 | 343 |
344 #endif // CORE_INCLUDE_FXCODEC_FX_CODEC_H_ | 344 #endif // CORE_INCLUDE_FXCODEC_FX_CODEC_H_ |
OLD | NEW |