blob: 3b6f5475b70248e7f4e2a7f66d08573bf9db0b19 [file] [log] [blame]
Dan Sinclair0bb13332017-03-30 16:12:02 -04001// Copyright 2017 PDFium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7#ifndef CORE_FXCODEC_CODEC_CJPX_DECODER_H_
8#define CORE_FXCODEC_CODEC_CJPX_DECODER_H_
9
Ryan Harrison808b52a2017-09-08 10:10:26 -040010#include <memory>
Dan Sinclair0bb13332017-03-30 16:12:02 -040011#include <vector>
12
Ryan Harrison808b52a2017-09-08 10:10:26 -040013#include "core/fxcodec/codec/codec_int.h"
Dan Sinclairaee0db02017-09-21 16:53:58 -040014#include "core/fxcrt/unowned_ptr.h"
Tom Sepez00ba8bb2018-06-27 18:02:30 +000015#include "third_party/base/span.h"
Felix Kauselmann8d72a472019-02-13 23:44:56 +000016
17#ifdef USE_SYSTEM_LIBOPENJPEG2
18#include <openjpeg.h>
19#else
Dan Sinclair0bb13332017-03-30 16:12:02 -040020#include "third_party/libopenjpeg20/openjpeg.h"
Felix Kauselmann8d72a472019-02-13 23:44:56 +000021#endif
Dan Sinclair0bb13332017-03-30 16:12:02 -040022
23class CPDF_ColorSpace;
24
25class CJPX_Decoder {
26 public:
27 explicit CJPX_Decoder(CPDF_ColorSpace* cs);
28 ~CJPX_Decoder();
29
Tom Sepez00ba8bb2018-06-27 18:02:30 +000030 bool Init(pdfium::span<const uint8_t> src_data);
Dan Sinclair0bb13332017-03-30 16:12:02 -040031 void GetInfo(uint32_t* width, uint32_t* height, uint32_t* components);
Nicolas Penafa7983e2018-11-16 21:54:51 +000032 bool StartDecode();
Dan Sinclair0bb13332017-03-30 16:12:02 -040033 bool Decode(uint8_t* dest_buf,
Ryan Harrisonb6e01172018-06-20 13:43:04 +000034 uint32_t pitch,
Dan Sinclair0bb13332017-03-30 16:12:02 -040035 const std::vector<uint8_t>& offsets);
36
37 private:
Tom Sepez00ba8bb2018-06-27 18:02:30 +000038 pdfium::span<const uint8_t> m_SrcData;
39 UnownedPtr<opj_image_t> m_Image;
40 UnownedPtr<opj_codec_t> m_Codec;
Ryan Harrison808b52a2017-09-08 10:10:26 -040041 std::unique_ptr<DecodeData> m_DecodeData;
Tom Sepez00ba8bb2018-06-27 18:02:30 +000042 UnownedPtr<opj_stream_t> m_Stream;
Ryan Harrison808b52a2017-09-08 10:10:26 -040043 opj_dparameters_t m_Parameters;
Dan Sinclairaee0db02017-09-21 16:53:58 -040044 UnownedPtr<const CPDF_ColorSpace> const m_ColorSpace;
Dan Sinclair0bb13332017-03-30 16:12:02 -040045};
46
47#endif // CORE_FXCODEC_CODEC_CJPX_DECODER_H_