| 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/include/fxcodec/fx_codec.h" | 7 #include "core/include/fxcodec/fx_codec.h" |
| 8 | 8 |
| 9 #include <cmath> | 9 #include <cmath> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 void CCodec_ScanlineDecoder::DownScale(int dest_width, int dest_height) { | 127 void CCodec_ScanlineDecoder::DownScale(int dest_width, int dest_height) { |
| 128 dest_width = std::abs(dest_width); | 128 dest_width = std::abs(dest_width); |
| 129 dest_height = std::abs(dest_height); | 129 dest_height = std::abs(dest_height); |
| 130 v_DownScale(dest_width, dest_height); | 130 v_DownScale(dest_width, dest_height); |
| 131 | 131 |
| 132 if (m_pDataCache && | 132 if (m_pDataCache && |
| 133 m_pDataCache->IsSameDimensions(m_OutputWidth, m_OutputHeight)) { | 133 m_pDataCache->IsSameDimensions(m_OutputWidth, m_OutputHeight)) { |
| 134 return; | 134 return; |
| 135 } | 135 } |
| 136 | 136 |
| 137 nonstd::unique_ptr<ImageDataCache> cache( | 137 std::unique_ptr<ImageDataCache> cache( |
| 138 new ImageDataCache(m_OutputWidth, m_OutputHeight, m_Pitch)); | 138 new ImageDataCache(m_OutputWidth, m_OutputHeight, m_Pitch)); |
| 139 if (!cache->AllocateCache()) | 139 if (!cache->AllocateCache()) |
| 140 return; | 140 return; |
| 141 | 141 |
| 142 m_pDataCache = std::move(cache); | 142 m_pDataCache = std::move(cache); |
| 143 } | 143 } |
| 144 | 144 |
| 145 FX_BOOL CCodec_BasicModule::RunLengthEncode(const uint8_t* src_buf, | 145 FX_BOOL CCodec_BasicModule::RunLengthEncode(const uint8_t* src_buf, |
| 146 FX_DWORD src_size, | 146 FX_DWORD src_size, |
| 147 uint8_t*& dest_buf, | 147 uint8_t*& dest_buf, |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 int nComps, | 454 int nComps, |
| 455 int bpc) { | 455 int bpc) { |
| 456 CCodec_RLScanlineDecoder* pRLScanlineDecoder = new CCodec_RLScanlineDecoder; | 456 CCodec_RLScanlineDecoder* pRLScanlineDecoder = new CCodec_RLScanlineDecoder; |
| 457 if (!pRLScanlineDecoder->Create(src_buf, src_size, width, height, nComps, | 457 if (!pRLScanlineDecoder->Create(src_buf, src_size, width, height, nComps, |
| 458 bpc)) { | 458 bpc)) { |
| 459 delete pRLScanlineDecoder; | 459 delete pRLScanlineDecoder; |
| 460 return NULL; | 460 return NULL; |
| 461 } | 461 } |
| 462 return pRLScanlineDecoder; | 462 return pRLScanlineDecoder; |
| 463 } | 463 } |
| OLD | NEW |