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_params_local.h"
44
45namespace ojph {
46
48 //defined elsewhere
49 class line_buf;
52 class codestream;
53
54 namespace local {
55
57 static inline
59 {
60 return (ui16)((t << 8) | (t >> 8));
61 }
62
64 //defined elsewhere
65 class tile;
66
69 {
70 friend ::ojph::codestream;
71
72 public:
73 codestream();
75
76 void restart();
77
78 void pre_alloc();
79 void finalize_alloc();
80
81 ojph::param_siz access_siz() // returns externally wrapped siz
82 { return ojph::param_siz(&siz); }
83 const param_siz* get_siz() // returns internal siz
84 { return &siz; }
85 ojph::param_cod access_cod() // returns externally wrapped cod
86 { return ojph::param_cod(&cod); }
87 const param_cod* get_cod() // returns internal cod
88 { return &cod; }
89 const param_cod* get_coc(ui32 comp_num) // returns internal cod
90 { return cod.get_coc(comp_num); }
92 { return &qcd; }
94 { if (dfs.exists()) return &dfs; else return NULL; }
96 { return &nlt; }
100
101 line_buf* exchange(line_buf* line, ui32& next_component);
102 void write_headers(outfile_base *file, const comment_exchange* comments,
103 ui32 num_comments);
104 void enable_resilience();
105 bool is_resilient() { return resilient; }
106 void read_headers(infile_base *file);
107 void restrict_input_resolution(ui32 skipped_res_for_data,
109 void read();
110 void set_planar(int planar);
111 void set_profile(const char *s);
112 void set_tilepart_divisions(ui32 value);
113 void request_tlm_marker(bool needed);
114 line_buf* pull(ui32 &comp_num);
115 void flush();
116 void close();
117
118 bool is_planar() const { return planar != 0; }
119 si32 get_profile() const { return profile; };
120 ui32 get_tilepart_div() const { return tilepart_div; };
121 bool is_tlm_needed() const { return need_tlm; };
122
123 void check_imf_validity();
125
131
132 private:
135
136 private:
142
143 private:
148 size *comp_size; //stores full resolution no. of lines and width
149 size *recon_comp_size; //stores number of lines and width of each comp
153 ui32 tilepart_div; // tilepart division value
154 bool need_tlm; // true if tlm markers are needed
155
156 private:
157 param_siz siz; // image and tile size
158 param_cod cod; // coding style default
159 param_cap cap; // extended capabilities
160 param_qcd qcd; // quantization default
161 param_tlm tlm; // tile-part lengths
162 param_nlt nlt; // non-linearity point transformation
163
164 private: // these are from Part 2 of the standard
165 param_dfs dfs; // downsmapling factor styles
166 param_atk atk; // wavelet structure and coefficients
167
168 private:
173 };
174
175 }
176}
177
178#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)
static ui16 swap_byte(ui16 t)
uint16_t ui16
Definition ojph_defs.h:52
int32_t si32
Definition ojph_defs.h:55
uint32_t ui32
Definition ojph_defs.h:54
uint8_t ui8
Definition ojph_defs.h:50