| 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 "core/fpdfapi/fpdf_render/render_int.h" | 7 #include "core/fpdfapi/fpdf_render/render_int.h" |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "core/fpdfapi/fpdf_page/cpdf_parseoptions.h" | 13 #include "core/fpdfapi/fpdf_page/cpdf_parseoptions.h" |
| 14 #include "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h" | 14 #include "core/fpdfapi/fpdf_page/include/cpdf_imageobject.h" |
| 15 #include "core/fpdfapi/fpdf_page/pageint.h" | 15 #include "core/fpdfapi/fpdf_page/pageint.h" |
| 16 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 16 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
| 17 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" | 17 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" |
| 18 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 18 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" |
| 19 #include "core/fpdfapi/fpdf_render/cpdf_pagerendercache.h" | 19 #include "core/fpdfapi/fpdf_render/cpdf_pagerendercache.h" |
| 20 #include "core/fpdfapi/include/cpdf_modulemgr.h" | 20 #include "core/fpdfapi/include/cpdf_modulemgr.h" |
| 21 #include "core/fxcrt/include/fx_safe_types.h" |
| 21 #include "core/include/fxcodec/fx_codec.h" | 22 #include "core/include/fxcodec/fx_codec.h" |
| 22 #include "core/include/fxcrt/fx_safe_types.h" | |
| 23 #include "core/include/fxge/fx_ge.h" | 23 #include "core/include/fxge/fx_ge.h" |
| 24 | 24 |
| 25 namespace { | 25 namespace { |
| 26 | 26 |
| 27 unsigned int GetBits8(const uint8_t* pData, uint64_t bitpos, size_t nbits) { | 27 unsigned int GetBits8(const uint8_t* pData, uint64_t bitpos, size_t nbits) { |
| 28 ASSERT(nbits == 1 || nbits == 2 || nbits == 4 || nbits == 8 || nbits == 16); | 28 ASSERT(nbits == 1 || nbits == 2 || nbits == 4 || nbits == 8 || nbits == 16); |
| 29 ASSERT((bitpos & (nbits - 1)) == 0); | 29 ASSERT((bitpos & (nbits - 1)) == 0); |
| 30 unsigned int byte = pData[bitpos / 8]; | 30 unsigned int byte = pData[bitpos / 8]; |
| 31 if (nbits == 8) { | 31 if (nbits == 8) { |
| 32 return byte; | 32 return byte; |
| (...skipping 1613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1646 IFX_Pause* pPause) { | 1646 IFX_Pause* pPause) { |
| 1647 return LoadHandle->Continue(pPause); | 1647 return LoadHandle->Continue(pPause); |
| 1648 } | 1648 } |
| 1649 | 1649 |
| 1650 CPDF_ImageLoader::~CPDF_ImageLoader() { | 1650 CPDF_ImageLoader::~CPDF_ImageLoader() { |
| 1651 if (!m_bCached) { | 1651 if (!m_bCached) { |
| 1652 delete m_pBitmap; | 1652 delete m_pBitmap; |
| 1653 delete m_pMask; | 1653 delete m_pMask; |
| 1654 } | 1654 } |
| 1655 } | 1655 } |
| OLD | NEW |