// Copyright 2017 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef CORE_FPDFAPI_PAGE_CPDF_SAMPLEDFUNC_H_ #define CORE_FPDFAPI_PAGE_CPDF_SAMPLEDFUNC_H_ #include #include "core/fpdfapi/page/cpdf_function.h" #include "core/fxcrt/retain_ptr.h" class CPDF_StreamAcc; class CPDF_SampledFunc final : public CPDF_Function { public: struct SampleEncodeInfo { float encode_max; float encode_min; uint32_t sizes; }; struct SampleDecodeInfo { float decode_max; float decode_min; }; CPDF_SampledFunc(); ~CPDF_SampledFunc() override; // CPDF_Function: bool v_Init(const CPDF_Object* pObj, VisitedSet* pVisited) override; bool v_Call(pdfium::span inputs, pdfium::span results) const override; const std::vector& GetEncodeInfo() const { return m_EncodeInfo; } uint32_t GetBitsPerSample() const { return m_nBitsPerSample; } #if defined(_SKIA_SUPPORT_) RetainPtr GetSampleStream() const; #endif private: std::vector m_EncodeInfo; std::vector m_DecodeInfo; uint32_t m_nBitsPerSample = 0; uint32_t m_SampleMax = 0; RetainPtr m_pSampleStream; }; #endif // CORE_FPDFAPI_PAGE_CPDF_SAMPLEDFUNC_H_