Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: core/fxcodec/codec/ccodec_basicmodule.h

Issue 2615703002: Revert postscript code removal. (Closed)
Patch Set: Move files, remove extra class, remove non const refs Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | core/fxcodec/codec/ccodec_faxmodule.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_BASICMODULE_H_ 7 #ifndef CORE_FXCODEC_CODEC_CCODEC_BASICMODULE_H_
8 #define CORE_FXCODEC_CODEC_CCODEC_BASICMODULE_H_ 8 #define CORE_FXCODEC_CODEC_CCODEC_BASICMODULE_H_
9 9
10 #include <memory> 10 #include <memory>
11 11
12 #include "core/fxcrt/fx_system.h" 12 #include "core/fxcrt/fx_system.h"
13 13
14 class CCodec_ScanlineDecoder; 14 class CCodec_ScanlineDecoder;
15 15
16 class CCodec_BasicModule { 16 class CCodec_BasicModule {
17 public: 17 public:
18 std::unique_ptr<CCodec_ScanlineDecoder> CreateRunLengthDecoder( 18 std::unique_ptr<CCodec_ScanlineDecoder> CreateRunLengthDecoder(
19 const uint8_t* src_buf, 19 const uint8_t* src_buf,
20 uint32_t src_size, 20 uint32_t src_size,
21 int width, 21 int width,
22 int height, 22 int height,
23 int nComps, 23 int nComps,
24 int bpc); 24 int bpc);
25 bool RunLengthEncode(const uint8_t* src_buf,
26 uint32_t src_size,
27 uint8_t** dest_buf,
28 uint32_t* dest_size);
29 bool A85Encode(const uint8_t* src_buf,
30 uint32_t src_size,
31 uint8_t** dest_buf,
32 uint32_t* dest_size);
25 }; 33 };
26 34
27 #endif // CORE_FXCODEC_CODEC_CCODEC_BASICMODULE_H_ 35 #endif // CORE_FXCODEC_CODEC_CCODEC_BASICMODULE_H_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | core/fxcodec/codec/ccodec_faxmodule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698