From 319ef06b2f695c7ebc26985d477b71fe8db93d3e Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Mon, 2 Jul 2018 19:16:43 +0000 Subject: Add pdfium::Vector2D<>() Many of the FX_Alloc's that have not been converted to std::vector are using FX_Alloc2D and the safe math it performs under the covers. Make an equivalent function for returning a vector to avoid burdening callers with the safe math equivalents. Use it in one place. Change-Id: Ie4a280351b7370b755f2a1928f8b2d84fe007c03 Reviewed-on: https://pdfium-review.googlesource.com/36770 Commit-Queue: Tom Sepez Reviewed-by: Lei Zhang --- core/fpdfapi/page/cpdf_colorspace.cpp | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) (limited to 'core/fpdfapi/page') diff --git a/core/fpdfapi/page/cpdf_colorspace.cpp b/core/fpdfapi/page/cpdf_colorspace.cpp index 0138b81ca1..17b2914900 100644 --- a/core/fpdfapi/page/cpdf_colorspace.cpp +++ b/core/fpdfapi/page/cpdf_colorspace.cpp @@ -222,7 +222,7 @@ class CPDF_ICCBasedCS : public CPDF_ColorSpace { MaybeOwned m_pAlterCS; RetainPtr m_pProfile; - mutable std::unique_ptr m_pCache; + mutable std::vector m_pCache; std::vector m_pRanges; }; @@ -984,24 +984,22 @@ void CPDF_ICCBasedCS::TranslateImageLine(uint8_t* pDestBuf, return; } - if (!m_pCache) { - m_pCache.reset(FX_Alloc2D(uint8_t, nMaxColors, 3)); - std::unique_ptr temp_src( - FX_Alloc2D(uint8_t, nMaxColors, nComponents)); - uint8_t* pSrc = temp_src.get(); + if (m_pCache.empty()) { + m_pCache = pdfium::Vector2D(nMaxColors, 3); + auto temp_src = pdfium::Vector2D(nMaxColors, nComponents); + size_t src_index = 0; for (int i = 0; i < nMaxColors; i++) { uint32_t color = i; uint32_t order = nMaxColors / 52; for (uint32_t c = 0; c < nComponents; c++) { - *pSrc++ = static_cast(color / order * 5); + temp_src[src_index++] = static_cast(color / order * 5); color %= order; order /= 52; } } CPDF_ModuleMgr::Get()->GetIccModule()->TranslateScanline( - m_pProfile->transform(), m_pCache.get(), temp_src.get(), nMaxColors); + m_pProfile->transform(), m_pCache.data(), temp_src.data(), nMaxColors); } - uint8_t* pCachePtr = m_pCache.get(); for (int i = 0; i < pixels; i++) { int index = 0; for (uint32_t c = 0; c < nComponents; c++) { @@ -1009,9 +1007,9 @@ void CPDF_ICCBasedCS::TranslateImageLine(uint8_t* pDestBuf, pSrcBuf++; } index *= 3; - *pDestBuf++ = pCachePtr[index]; - *pDestBuf++ = pCachePtr[index + 1]; - *pDestBuf++ = pCachePtr[index + 2]; + *pDestBuf++ = m_pCache[index]; + *pDestBuf++ = m_pCache[index + 1]; + *pDestBuf++ = m_pCache[index + 2]; } } -- cgit v1.2.3