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 #include "../../../include/fxcodec/fx_codec.h" | 7 #include "../../../include/fxcodec/fx_codec.h" |
8 | 8 |
9 #include <cmath> | 9 #include <cmath> |
10 | 10 |
11 #include "../../../../third_party/base/logging.h" | |
12 #include "../../../include/fxcrt/fx_safe_types.h" | 11 #include "../../../include/fxcrt/fx_safe_types.h" |
13 #include "codec_int.h" | 12 #include "codec_int.h" |
| 13 #include "third_party/base/logging.h" |
14 | 14 |
15 CCodec_ModuleMgr::CCodec_ModuleMgr() | 15 CCodec_ModuleMgr::CCodec_ModuleMgr() |
16 : m_pBasicModule(new CCodec_BasicModule), | 16 : m_pBasicModule(new CCodec_BasicModule), |
17 m_pFaxModule(new CCodec_FaxModule), | 17 m_pFaxModule(new CCodec_FaxModule), |
18 m_pJpegModule(new CCodec_JpegModule), | 18 m_pJpegModule(new CCodec_JpegModule), |
19 m_pJpxModule(new CCodec_JpxModule), | 19 m_pJpxModule(new CCodec_JpxModule), |
20 m_pJbig2Module(new CCodec_Jbig2Module), | 20 m_pJbig2Module(new CCodec_Jbig2Module), |
21 m_pIccModule(new CCodec_IccModule), | 21 m_pIccModule(new CCodec_IccModule), |
22 m_pFlateModule(new CCodec_FlateModule) {} | 22 m_pFlateModule(new CCodec_FlateModule) {} |
23 | 23 |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 int nComps, | 439 int nComps, |
440 int bpc) { | 440 int bpc) { |
441 CCodec_RLScanlineDecoder* pRLScanlineDecoder = new CCodec_RLScanlineDecoder; | 441 CCodec_RLScanlineDecoder* pRLScanlineDecoder = new CCodec_RLScanlineDecoder; |
442 if (!pRLScanlineDecoder->Create(src_buf, src_size, width, height, nComps, | 442 if (!pRLScanlineDecoder->Create(src_buf, src_size, width, height, nComps, |
443 bpc)) { | 443 bpc)) { |
444 delete pRLScanlineDecoder; | 444 delete pRLScanlineDecoder; |
445 return NULL; | 445 return NULL; |
446 } | 446 } |
447 return pRLScanlineDecoder; | 447 return pRLScanlineDecoder; |
448 } | 448 } |
OLD | NEW |