From 7e33dbeec78dfa051df52619672133da6a799240 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Wed, 23 May 2018 23:41:00 +0000 Subject: Remove GetBits32(). Replace it with CFX_BitStream. Change-Id: Ib74657f888b8dec8b6fdad7b49e28d250991c590 Reviewed-on: https://pdfium-review.googlesource.com/32852 Commit-Queue: Lei Zhang Reviewed-by: dsinclair --- core/fpdfapi/page/cpdf_sampledfunc.cpp | 60 +++++++++++++++++++--------------- 1 file changed, 34 insertions(+), 26 deletions(-) (limited to 'core/fpdfapi/page') diff --git a/core/fpdfapi/page/cpdf_sampledfunc.cpp b/core/fpdfapi/page/cpdf_sampledfunc.cpp index 9f19c1c468..8ac4bb5be4 100644 --- a/core/fpdfapi/page/cpdf_sampledfunc.cpp +++ b/core/fpdfapi/page/cpdf_sampledfunc.cpp @@ -7,8 +7,8 @@ #include "core/fpdfapi/page/cpdf_sampledfunc.h" #include "core/fpdfapi/parser/cpdf_array.h" +#include "core/fxcrt/cfx_bitstream.h" #include "core/fxcrt/cfx_fixedbufgrow.h" -#include "core/fxcrt/fx_extension.h" #include "core/fxcrt/fx_safe_types.h" namespace { @@ -119,45 +119,53 @@ bool CPDF_SampledFunc::v_Call(const float* inputs, float* results) const { if (!bits_to_output.IsValid()) return false; - FX_SAFE_INT32 bitpos = pos; - bitpos *= bits_to_output.ValueOrDie(); - if (!bitpos.IsValid()) - return false; + int bits_to_skip; + { + FX_SAFE_INT32 bitpos = pos; + bitpos *= bits_to_output.ValueOrDie(); + bits_to_skip = bitpos.ValueOrDefault(-1); + if (bits_to_skip < 0) + return false; - FX_SAFE_INT32 range_check = bitpos; - range_check += bits_to_output.ValueOrDie(); - if (!range_check.IsValid()) - return false; + FX_SAFE_INT32 range_check = bitpos; + range_check += bits_to_output.ValueOrDie(); + if (!range_check.IsValid()) + return false; + } pdfium::span pSampleData = m_pSampleStream->GetSpan(); if (pSampleData.empty()) return false; - for (uint32_t j = 0; j < m_nOutputs; j++, bitpos += m_nBitsPerSample) { - uint32_t sample = - GetBits32(pSampleData, bitpos.ValueOrDie(), m_nBitsPerSample); + CFX_BitStream bitstream(pSampleData); + bitstream.SkipBits(bits_to_skip); + for (uint32_t i = 0; i < m_nOutputs; ++i) { + uint32_t sample = bitstream.GetBits(m_nBitsPerSample); float encoded = sample; - for (uint32_t i = 0; i < m_nInputs; i++) { - if (index[i] == m_EncodeInfo[i].sizes - 1) { - if (index[i] == 0) - encoded = encoded_input[i] * sample; + for (uint32_t j = 0; j < m_nInputs; ++j) { + if (index[j] == m_EncodeInfo[j].sizes - 1) { + if (index[j] == 0) + encoded = encoded_input[j] * sample; } else { - FX_SAFE_INT32 bitpos2 = blocksize[i]; + FX_SAFE_INT32 bitpos2 = blocksize[j]; bitpos2 += pos; bitpos2 *= m_nOutputs; - bitpos2 += j; + bitpos2 += i; bitpos2 *= m_nBitsPerSample; - if (!bitpos2.IsValid()) + int bits_to_skip2 = bitpos2.ValueOrDefault(-1); + if (bits_to_skip2 < 0) return false; - uint32_t sample1 = - GetBits32(pSampleData, bitpos2.ValueOrDie(), m_nBitsPerSample); - encoded += (encoded_input[i] - index[i]) * - (static_cast(sample1) - sample); + + CFX_BitStream bitstream2(pSampleData); + bitstream2.SkipBits(bits_to_skip2); + float sample2 = + static_cast(bitstream2.GetBits(m_nBitsPerSample)); + encoded += (encoded_input[j] - index[j]) * (sample2 - sample); } } - results[j] = - Interpolate(encoded, 0, m_SampleMax, m_DecodeInfo[j].decode_min, - m_DecodeInfo[j].decode_max); + results[i] = + Interpolate(encoded, 0, m_SampleMax, m_DecodeInfo[i].decode_min, + m_DecodeInfo[i].decode_max); } return true; } -- cgit v1.2.3