1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
/*
Copyright (c) 2005-2014, John Hurst
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*! \file JP2K.h
\version $Id$
\brief JPEG 2000 constants and data structures
This is not a complete enumeration of all things JP2K. There is just enough here to
support parsing picture metadata from a codestream header.
*/
#ifndef _JP2K_H_
#define _JP2K_H_
// AS_DCP.h is included only for it's base type definitions.
#include <KM_platform.h>
#include <KM_util.h>
#include <AS_DCP.h>
#include <assert.h>
namespace ASDCP
{
namespace JP2K
{
const byte_t Magic[] = {0xff, 0x4f, 0xff};
enum Marker_t
{
MRK_NIL = 0,
MRK_SOC = 0xff4f, // Start of codestream
MRK_SOT = 0xff90, // Start of tile-part
MRK_SOD = 0xff93, // Start of data
MRK_EOC = 0xffd9, // End of codestream
MRK_CAP = 0xff50, // Extended capabilities
MRK_SIZ = 0xff51, // Image and tile size
MRK_COD = 0xff52, // Coding style default
MRK_COC = 0xff53, // Coding style component
MRK_PRF = 0xff56, // Profile
MRK_CPF = 0xff59, // Corresponding profile
MRK_RGN = 0xff5e, // Region of interest
MRK_QCD = 0xff5c, // Quantization default
MRK_QCC = 0xff5d, // Quantization component
MRK_POC = 0xff5f, // Progression order change
MRK_TLM = 0xff55, // Tile-part lengths
MRK_PLM = 0xff57, // Packet length, main header
MRK_PLT = 0xff58, // Packet length, tile-part header
MRK_PPM = 0xff60, // Packed packet headers, main header
MRK_PPT = 0xff61, // Packed packet headers, tile-part header
MRK_SOP = 0xff91, // Start of packet
MRK_EPH = 0xff92, // End of packet header
MRK_CRG = 0xff63, // Component registration
MRK_COM = 0xff64, // Comment
};
const char* GetMarkerString(Marker_t m);
//
class Marker
{
KM_NO_COPY_CONSTRUCT(Marker);
public:
Marker_t m_Type;
bool m_IsSegment;
ui32_t m_DataSize;
const byte_t* m_Data;
Marker() : m_Type(MRK_NIL), m_IsSegment(false), m_DataSize(0), m_Data(0) {}
~Marker() {}
void Dump(FILE* stream = 0) const;
};
//
ASDCP::Result_t GetNextMarker(const byte_t**, Marker&);
// accessor objects for marker segments
namespace Accessor
{
// image size
class SIZ
{
const byte_t* m_MarkerData;
KM_NO_COPY_CONSTRUCT(SIZ);
SIZ();
public:
SIZ(const Marker& M)
{
assert(M.m_Type == MRK_SIZ);
m_MarkerData = M.m_Data;
}
~SIZ() {}
inline ui16_t Rsize() const { return KM_i16_BE(*(ui16_t*)m_MarkerData); }
inline ui32_t Xsize() const { return KM_i32_BE(*(ui32_t*)(m_MarkerData + 2)); }
inline ui32_t Ysize() const { return KM_i32_BE(*(ui32_t*)(m_MarkerData + 6)); }
inline ui32_t XOsize() const { return KM_i32_BE(*(ui32_t*)(m_MarkerData + 10)); }
inline ui32_t YOsize() const { return KM_i32_BE(*(ui32_t*)(m_MarkerData + 14)); }
inline ui32_t XTsize() const { return KM_i32_BE(*(ui32_t*)(m_MarkerData + 18)); }
inline ui32_t YTsize() const { return KM_i32_BE(*(ui32_t*)(m_MarkerData + 22)); }
inline ui32_t XTOsize() const { return KM_i32_BE(*(ui32_t*)(m_MarkerData + 26)); }
inline ui32_t YTOsize() const { return KM_i32_BE(*(ui32_t*)(m_MarkerData + 30)); }
inline ui16_t Csize() const { return KM_i16_BE(*(ui16_t*)(m_MarkerData + 34)); }
void ReadComponent(const ui32_t index, ImageComponent_t& IC) const;
void Dump(FILE* stream = 0) const;
};
const int SGcodOFST = 1;
const int SPcodOFST = 5;
// coding style
class COD
{
const byte_t* m_MarkerData;
KM_NO_COPY_CONSTRUCT(COD);
COD();
public:
COD(const Marker& M)
{
assert(M.m_Type == MRK_COD);
m_MarkerData = M.m_Data;
}
~COD() {}
inline ui8_t ProgOrder() const { return *(m_MarkerData + SGcodOFST ); }
inline ui16_t Layers() const { return KM_i16_BE(*(ui16_t*)(m_MarkerData + SGcodOFST + 1));}
inline ui8_t DecompLevels() const { return *(m_MarkerData + SPcodOFST); }
inline ui8_t CodeBlockWidth() const { return *(m_MarkerData + SPcodOFST + 1) + 2; }
inline ui8_t CodeBlockHeight() const { return *(m_MarkerData + SPcodOFST + 2) + 2; }
inline ui8_t CodeBlockStyle() const { return *(m_MarkerData + SPcodOFST + 3); }
inline ui8_t Transformation() const { return *(m_MarkerData + SPcodOFST + 4); }
void Dump(FILE* stream = 0) const;
};
const int SqcdOFST = 1;
const int SPqcdOFST = 2;
enum QuantizationType_t
{
QT_NONE,
QT_DERIVED,
QT_EXP
};
const char* GetQuantizationTypeString(const QuantizationType_t m);
// Quantization default
class QCD
{
const byte_t* m_MarkerData;
ui32_t m_DataSize;
KM_NO_COPY_CONSTRUCT(QCD);
QCD();
public:
QCD(const Marker& M)
{
assert(M.m_Type == MRK_QCD);
m_MarkerData = M.m_Data + 2;
m_DataSize = M.m_DataSize - 2;
}
~QCD() {}
inline QuantizationType_t QuantizationType() const { return static_cast<QuantizationType_t>(*(m_MarkerData + SqcdOFST) & 0x03); }
inline ui8_t GuardBits() const { return (*(m_MarkerData + SqcdOFST) & 0xe0) >> 5; }
void Dump(FILE* stream = 0) const;
};
// a comment
class COM
{
bool m_IsText;
const byte_t* m_MarkerData;
ui32_t m_DataSize;
KM_NO_COPY_CONSTRUCT(COM);
COM();
public:
COM(const Marker& M)
{
assert(M.m_Type == MRK_COM);
m_IsText = M.m_Data[1] == 1;
m_MarkerData = M.m_Data + 2;
m_DataSize = M.m_DataSize - 2;
}
~COM() {}
inline bool IsText() const { return m_IsText; }
inline const byte_t* CommentData() const { return m_MarkerData; }
inline ui32_t CommentSize() const { return m_DataSize; }
void Dump(FILE* stream = 0) const;
};
// Corresponding Profile
class CPF {
const ui16_t* m_Data;
ui16_t m_N;
KM_NO_COPY_CONSTRUCT(CPF);
CPF();
public:
CPF(const Marker& M) {
assert(M.m_Type == MRK_CPF);
m_Data = (ui16_t*) M.m_Data;
m_N = M.m_DataSize >> 1;
}
~CPF() {}
inline ui16_t N() const { return m_N; }
inline ui16_t pcpf(ui16_t i) const { return KM_i16_BE(m_Data[2 * (i - 1)]); }
void Dump(FILE* stream = 0) const;
};
// Profile
class PRF {
const ui16_t* m_Data;
ui16_t m_N;
KM_NO_COPY_CONSTRUCT(PRF);
PRF();
public:
PRF(const Marker& M) {
assert(M.m_Type == MRK_PRF);
m_Data = (ui16_t*) M.m_Data;
m_N = M.m_DataSize >> 1;
}
~PRF() {}
inline ui16_t N() const { return m_N; }
inline ui16_t pprf(ui16_t i) const { return KM_i16_BE(m_Data[2 * (i - 1)]); }
void Dump(FILE* stream = 0) const;
};
// Extended capabilities
class CAP {
const ui16_t* m_Data;
ui32_t m_Pcap;
i8_t m_N;
KM_NO_COPY_CONSTRUCT(CAP);
CAP();
public:
CAP(const Marker& M) {
assert(M.m_Type == MRK_CAP);
m_Data = (ui16_t *) (M.m_Data + 4);
m_Pcap = KM_i32_BE(*(ui32_t*)(M.m_Data));
m_N = (M.m_DataSize - 4) >> 1;
}
~CAP() {}
inline ui32_t pcap() const { return m_Pcap; }
inline i8_t N() const { return m_N; }
inline ui16_t ccap(ui16_t i) const { return KM_i16_BE(m_Data[2 * (i - 1)]); }
void Dump(FILE* stream = 0) const;
};
} // namespace Accessor
} // namespace JP2K
} // namespace ASDCP
#endif // _JP2K_H_
//
// end JP2K.h
//
|