OpenJPH
Open-source implementation of JPEG2000 Part-15
Loading...
Searching...
No Matches
ojph_codestream_local.h
Go to the documentation of this file.
1//***************************************************************************/
2// This software is released under the 2-Clause BSD license, included
3// below.
4//
5// Copyright (c) 2019, Aous Naman
6// Copyright (c) 2019, Kakadu Software Pty Ltd, Australia
7// Copyright (c) 2019, The University of New South Wales, Australia
8//
9// Redistribution and use in source and binary forms, with or without
10// modification, are permitted provided that the following conditions are
11// met:
12//
13// 1. Redistributions of source code must retain the above copyright
14// notice, this list of conditions and the following disclaimer.
15//
16// 2. Redistributions in binary form must reproduce the above copyright
17// notice, this list of conditions and the following disclaimer in the
18// documentation and/or other materials provided with the distribution.
19//
20// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
21// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
26// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31//***************************************************************************/
32// This file is part of the OpenJPH software implementation.
33// File: ojph_codestream_local.h
34// Author: Aous Naman
35// Date: 28 August 2019
36//***************************************************************************/
37
38
39#ifndef OJPH_CODESTREAM_LOCAL_H
40#define OJPH_CODESTREAM_LOCAL_H
41
42#include "ojph_defs.h"
43#include "ojph_arch.h"
44#include "ojph_params_local.h"
45
46namespace ojph {
47
49 //defined elsewhere
50 class line_buf;
53 class codestream;
54
55 namespace local {
56
58
60 //defined elsewhere
61 class tile;
62
65 {
66 friend ::ojph::codestream;
67
68 public:
69 codestream();
71
72 void restart();
73
74 void pre_alloc();
75 void finalize_alloc();
76
77 ojph::param_siz access_siz() // returns externally wrapped siz
78 { return ojph::param_siz(&siz); }
79 const param_siz* get_siz() // returns internal siz
80 { return &siz; }
81 ojph::param_cod access_cod() // returns externally wrapped cod
82 { return ojph::param_cod(&cod); }
83 const param_cod* get_cod() // returns internal cod
84 { return &cod; }
85 const param_cod* get_coc(ui32 comp_num) // returns internal cod
86 { return cod.get_coc(comp_num); }
88 { return &qcd; }
90 { if (dfs.exists()) return &dfs; else return NULL; }
92 { return ≮ }
96
97 line_buf* exchange(line_buf* line, ui32& next_component);
98 void write_headers(outfile_base *file, const comment_exchange* comments,
99 ui32 num_comments);
100 void enable_resilience();
101 bool is_resilient() { return resilient; }
102 void read_headers(infile_base *file);
103 void restrict_input_resolution(ui32 skipped_res_for_data,
105 void read();
106 void set_planar(int planar);
107 void set_profile(const char *s);
108 void set_tilepart_divisions(ui32 value);
109 void request_tlm_marker(bool needed);
110 line_buf* pull(ui32 &comp_num);
111 void flush();
112 void close();
113
114 bool is_planar() const { return planar != 0; }
115 si32 get_profile() const { return profile; };
116 ui32 get_tilepart_div() const { return tilepart_div; };
117 bool is_tlm_needed() const { return need_tlm; };
118
119 void check_imf_validity();
121
127
128 private:
131
132 private:
138
139 private:
144 size *comp_size; //stores full resolution no. of lines and width
145 size *recon_comp_size; //stores number of lines and width of each comp
149 ui32 tilepart_div; // tilepart division value
150 bool need_tlm; // true if tlm markers are needed
151
152 private:
153 param_siz siz; // image and tile size
154 param_cod cod; // coding style default
155 param_cap cap; // extended capabilities
156 param_qcd qcd; // quantization default
157 param_tlm tlm; // tile-part lengths
158 param_nlt nlt; // non-linearity point transformation
159
160 private: // these are from Part 2 of the standard
161 param_dfs dfs; // downsmapling factor styles
162 param_atk atk; // wavelet structure and coefficients
163
164 private:
169 };
170
171 }
172}
173
174#endif // !OJPH_CODESTREAM_LOCAL_H
The object represent a codestream.
const param_cod * get_coc(ui32 comp_num)
mem_elastic_allocator * get_elastic_alloc()
line_buf * exchange(line_buf *line, ui32 &next_component)
const param_qcd * access_qcd()
mem_fixed_allocator * get_allocator()
void restrict_input_resolution(ui32 skipped_res_for_data, ui32 skipped_res_for_recon)
mem_elastic_allocator * elastic_alloc
const param_dfs * access_dfs()
mem_fixed_allocator * allocator
void write_headers(outfile_base *file, const comment_exchange *comments, ui32 num_comments)
void read_headers(infile_base *file)
line_buf * pull(ui32 &comp_num)
int32_t si32
Definition ojph_defs.h:55
uint32_t ui32
Definition ojph_defs.h:54
uint8_t ui8
Definition ojph_defs.h:50