23648d16cd20d3aed45eec85491cb3bd7be7792c
[openjpeg.git] / libopenjpeg / j2k.h
1 /*
2  * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
3  * Copyright (c) 2002-2007, Professor Benoit Macq
4  * Copyright (c) 2001-2003, David Janssens
5  * Copyright (c) 2002-2003, Yannick Verschueren
6  * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
7  * Copyright (c) 2005, Herve Drolon, FreeImage Team
8  * Copyright (c) 2006-2007, Parvatha Elangovan
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
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 IS'
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 #ifndef __J2K_H
33 #define __J2K_H
34 /**
35 @file j2k.h
36 @brief The JPEG-2000 Codestream Reader/Writer (J2K)
37
38 The functions in J2K.C have for goal to read/write the several parts of the codestream: markers and data.
39 */
40
41 /** @defgroup J2K J2K - JPEG-2000 codestream reader/writer */
42 /*@{*/
43
44 #define J2K_CP_CSTY_PRT 0x01
45 #define J2K_CP_CSTY_SOP 0x02
46 #define J2K_CP_CSTY_EPH 0x04
47 #define J2K_CCP_CSTY_PRT 0x01
48 #define J2K_CCP_CBLKSTY_LAZY 0x01     /**< Selective arithmetic coding bypass */
49 #define J2K_CCP_CBLKSTY_RESET 0x02    /**< Reset context probabilities on coding pass boundaries */
50 #define J2K_CCP_CBLKSTY_TERMALL 0x04  /**< Termination on each coding pass */
51 #define J2K_CCP_CBLKSTY_VSC 0x08      /**< Vertically stripe causal context */
52 #define J2K_CCP_CBLKSTY_PTERM 0x10    /**< Predictable termination */
53 #define J2K_CCP_CBLKSTY_SEGSYM 0x20   /**< Segmentation symbols are used */
54 #define J2K_CCP_QNTSTY_NOQNT 0
55 #define J2K_CCP_QNTSTY_SIQNT 1
56 #define J2K_CCP_QNTSTY_SEQNT 2
57
58 /* ----------------------------------------------------------------------- */
59
60 #define J2K_MS_SOC 0xff4f       /**< SOC marker value */
61 #define J2K_MS_SOT 0xff90       /**< SOT marker value */
62 #define J2K_MS_SOD 0xff93       /**< SOD marker value */
63 #define J2K_MS_EOC 0xffd9       /**< EOC marker value */
64 #define J2K_MS_SIZ 0xff51       /**< SIZ marker value */
65 #define J2K_MS_COD 0xff52       /**< COD marker value */
66 #define J2K_MS_COC 0xff53       /**< COC marker value */
67 #define J2K_MS_RGN 0xff5e       /**< RGN marker value */
68 #define J2K_MS_QCD 0xff5c       /**< QCD marker value */
69 #define J2K_MS_QCC 0xff5d       /**< QCC marker value */
70 #define J2K_MS_POC 0xff5f       /**< POC marker value */
71 #define J2K_MS_TLM 0xff55       /**< TLM marker value */
72 #define J2K_MS_PLM 0xff57       /**< PLM marker value */
73 #define J2K_MS_PLT 0xff58       /**< PLT marker value */
74 #define J2K_MS_PPM 0xff60       /**< PPM marker value */
75 #define J2K_MS_PPT 0xff61       /**< PPT marker value */
76 #define J2K_MS_SOP 0xff91       /**< SOP marker value */
77 #define J2K_MS_EPH 0xff92       /**< EPH marker value */
78 #define J2K_MS_CRG 0xff63       /**< CRG marker value */
79 #define J2K_MS_COM 0xff64       /**< COM marker value */
80
81 #define J2K_MS_UNK 0            /**< UNKNOWN marker value */
82
83 #ifdef TODO_MS
84 #define J2K_MS_CBD 0xff78       /**< CBD marker value */
85 #define J2K_MS_MCC 0xff75       /**< MCC marker value */
86 #define J2K_MS_MCT 0xff74       /**< MCT marker value */
87 #define J2K_MS_MCO 0xff77       /**< MCO marker value */
88 #endif
89
90 /* UniPG>> */
91 #ifdef USE_JPWL
92 #define J2K_MS_EPC 0xff68       /**< EPC marker value (Part 11: JPEG 2000 for Wireless) */
93 #define J2K_MS_EPB 0xff66       /**< EPB marker value (Part 11: JPEG 2000 for Wireless) */ 
94 #define J2K_MS_ESD 0xff67       /**< ESD marker value (Part 11: JPEG 2000 for Wireless) */ 
95 #define J2K_MS_RED 0xff69       /**< RED marker value (Part 11: JPEG 2000 for Wireless) */
96 #endif /* USE_JPWL */
97 #ifdef USE_JPSEC
98 #define J2K_MS_SEC 0xff65    /**< SEC marker value (Part 8: Secure JPEG 2000) */
99 #define J2K_MS_INSEC 0xff94  /**< INSEC marker value (Part 8: Secure JPEG 2000) */
100 #endif /* USE_JPSEC */
101 /* <<UniPG */
102
103
104 struct opj_stream_private;
105
106 /* ----------------------------------------------------------------------- */
107
108 /**
109 Values that specify the status of the decoding process when decoding the main header. 
110 These values may be combined with a | operator. 
111 */
112 typedef enum J2K_STATUS {
113         J2K_STATE_MHSOC  = 0x0001, /**< a SOC marker is expected */
114         J2K_STATE_MHSIZ  = 0x0002, /**< a SIZ marker is expected */
115         J2K_STATE_MH     = 0x0004, /**< the decoding process is in the main header */
116         J2K_STATE_TPHSOT = 0x0008, /**< the decoding process is in a tile part header and expects a SOT marker */
117         J2K_STATE_TPH    = 0x0010, /**< the decoding process is in a tile part header */
118         J2K_STATE_MT     = 0x0020, /**< the EOC marker has just been read */
119         J2K_STATE_NEOC   = 0x0040, /**< the decoding process must not expect a EOC marker because the codestream is truncated */
120
121         J2K_STATE_EOC    = 0x0100,  /**< the decoding process has encountered the EOC marker */
122         J2K_STATE_ERR    = 0x8000 /**< the decoding process has encountered an error (FIXME warning V1 = 0x0080)*/
123 } J2K_STATUS;
124
125 /* ----------------------------------------------------------------------- */
126
127 /** 
128 T2 encoding mode 
129 */
130 typedef enum T2_MODE {
131         THRESH_CALC = 0,        /** Function called in Rate allocation process*/
132         FINAL_PASS = 1          /** Function called in Tier 2 process*/
133 }J2K_T2_MODE;
134
135 /**
136 Quantization stepsize
137 */
138 typedef struct opj_stepsize {
139         /** exponent */
140         int expn;
141         /** mantissa */
142         int mant;
143 } opj_stepsize_t;
144
145 //OPJ_V1/**
146 //Tile-component coding parameters
147 //*/
148 //typedef struct opj_tccp {
149 //      /** coding style */
150 //      int csty;
151 //      /** number of resolutions */
152 //      int numresolutions;
153 //      /** code-blocks width */
154 //      int cblkw;
155 //      /** code-blocks height */
156 //      int cblkh;
157 //      /** code-block coding style */
158 //      int cblksty;
159 //      /** discrete wavelet transform identifier */
160 //      int qmfbid;
161 //      /** quantisation style */
162 //      int qntsty;
163 //      /** stepsizes used for quantization */
164 //      opj_stepsize_t stepsizes[J2K_MAXBANDS];
165 //      /** number of guard bits */
166 //      int numgbits;
167 //      /** Region Of Interest shift */
168 //      int roishift;
169 //      /** precinct width */
170 //      int prcw[J2K_MAXRLVLS];
171 //      /** precinct height */
172 //      int prch[J2K_MAXRLVLS];
173 //} opj_tccp_t;
174
175 /**
176 Tile-component coding parameters
177 */
178 typedef struct opj_tccp
179 {
180         /** coding style */
181         OPJ_UINT32 csty;
182         /** number of resolutions */
183         OPJ_UINT32 numresolutions;
184         /** code-blocks width */
185         OPJ_UINT32 cblkw;
186         /** code-blocks height */
187         OPJ_UINT32 cblkh;
188         /** code-block coding style */
189         OPJ_UINT32 cblksty;
190         /** discrete wavelet transform identifier */
191         OPJ_UINT32 qmfbid;
192         /** quantisation style */
193         OPJ_UINT32 qntsty;
194         /** stepsizes used for quantization */
195         opj_stepsize_t stepsizes[J2K_MAXBANDS];
196         /** number of guard bits */
197         OPJ_UINT32 numgbits;
198         /** Region Of Interest shift */
199         OPJ_INT32 roishift;
200         /** precinct width */
201         OPJ_UINT32 prcw[J2K_MAXRLVLS];
202         /** precinct height */
203         OPJ_UINT32 prch[J2K_MAXRLVLS];
204         /** the dc_level_shift **/
205         OPJ_INT32 m_dc_level_shift;
206 }
207 opj_tccp_t;
208
209
210 /**
211 Tile coding parameters : 
212 this structure is used to store coding/decoding parameters common to all
213 tiles (information like COD, COC in main header)
214 */
215 typedef struct opj_tcp {
216         /** 1 : first part-tile of a tile */
217         int first;
218         /** coding style */
219         int csty;
220         /** progression order */
221         OPJ_PROG_ORDER prg;
222         /** number of layers */
223         int numlayers;
224         /** multi-component transform identifier */
225         int mct;
226         /** rates of layers */
227         float rates[100];
228         /** number of progression order changes */
229         int numpocs;
230         /** indicates if a POC marker has been used O:NO, 1:YES */
231         int POC;
232         /** progression order changes */
233         opj_poc_t pocs[32];
234         /** packet header store there for futur use in t2_decode_packet */
235         unsigned char *ppt_data;
236         /** pointer remaining on the first byte of the first header if ppt is used */
237         unsigned char *ppt_data_first;
238         /** If ppt == 1 --> there was a PPT marker for the present tile */
239         int ppt;
240         /** used in case of multiple marker PPT (number of info already stored) */
241         int ppt_store;
242         /** ppmbug1 */
243         int ppt_len;
244         /** add fixed_quality */
245         float distoratio[100];
246         /** tile-component coding parameters */
247         opj_tccp_t *tccps;
248 } opj_tcp_t;
249
250
251 /**
252  * Type of data for storing the MCT data
253  */
254 typedef enum MCT_ELEMENT_TYPE
255 {
256         MCT_TYPE_INT16 = 0,             /** MCT data is stored as signed shorts*/
257         MCT_TYPE_INT32 = 1,             /** MCT data is stored as signed integers*/
258         MCT_TYPE_FLOAT = 2,             /** MCT data is stored as floats*/
259         MCT_TYPE_DOUBLE = 3             /** MCT data is stored as doubles*/
260 } J2K_MCT_ELEMENT_TYPE;
261
262 /**
263  * Type of data for storing the MCT data
264  */
265 typedef enum MCT_ARRAY_TYPE
266 {
267         MCT_TYPE_DEPENDENCY = 0,
268         MCT_TYPE_DECORRELATION = 1,
269         MCT_TYPE_OFFSET = 2
270 } J2K_MCT_ARRAY_TYPE;
271
272 typedef struct opj_mct_data
273 {
274         J2K_MCT_ELEMENT_TYPE m_element_type;
275         J2K_MCT_ARRAY_TYPE       m_array_type;
276         OPJ_UINT32                       m_index;
277         OPJ_BYTE *                       m_data;
278         OPJ_UINT32                       m_data_size;
279 }
280 opj_mct_data_t;
281
282 typedef struct opj_simple_mcc_decorrelation_data
283 {
284         OPJ_UINT32                       m_index;
285         OPJ_UINT32                       m_nb_comps;
286         opj_mct_data_t *         m_decorrelation_array;
287         opj_mct_data_t *         m_offset_array;
288         OPJ_UINT32                       m_is_irreversible : 1;
289 }
290 opj_simple_mcc_decorrelation_data_t;
291
292 /**
293 Tile coding parameters :
294 this structure is used to store coding/decoding parameters common to all
295 tiles (information like COD, COC in main header)
296 */
297 typedef struct opj_tcp_v2
298 {
299         /** coding style */
300         OPJ_UINT32 csty;
301         /** progression order */
302         OPJ_PROG_ORDER prg;
303         /** number of layers */
304         OPJ_UINT32 numlayers;
305         OPJ_UINT32 num_layers_to_decode;
306         /** multi-component transform identifier */
307         OPJ_UINT32 mct;
308         /** rates of layers */
309         OPJ_FLOAT32 rates[100];
310         /** number of progression order changes */
311         OPJ_UINT32 numpocs;
312         /** progression order changes */
313         opj_poc_t pocs[32];
314         /** packet header store there for futur use in t2_decode_packet */
315         OPJ_BYTE *ppt_data;
316         /** used to keep a track of the allocated memory */
317         OPJ_BYTE *ppt_buffer;
318         /** Number of bytes stored inside ppt_data*/
319         OPJ_UINT32 ppt_data_size;
320         /** size of ppt_data*/
321         OPJ_UINT32 ppt_len;
322         /** add fixed_quality */
323         OPJ_FLOAT32 distoratio[100];
324         /** tile-component coding parameters */
325         opj_tccp_t *tccps;
326         /** number of tile parts for the tile. */
327         OPJ_UINT32 m_nb_tile_parts;
328         /** data for the tile */
329         OPJ_BYTE *              m_data;
330         /** size of data */
331         OPJ_UINT32              m_data_size;
332         /** encoding norms */
333         OPJ_FLOAT64 *   mct_norms;
334         /** the mct decoding matrix */
335         OPJ_FLOAT32 *   m_mct_decoding_matrix;
336         /** the mct coding matrix */
337         OPJ_FLOAT32 *   m_mct_coding_matrix;
338         /** mct records */
339         opj_mct_data_t * m_mct_records;
340         /** the number of mct records. */
341         OPJ_UINT32 m_nb_mct_records;
342         /** the max number of mct records. */
343         OPJ_UINT32 m_nb_max_mct_records;
344         /** mcc records */
345         opj_simple_mcc_decorrelation_data_t * m_mcc_records;
346         /** the number of mct records. */
347         OPJ_UINT32 m_nb_mcc_records;
348         /** the max number of mct records. */
349         OPJ_UINT32 m_nb_max_mcc_records;
350
351
352
353         /***** FLAGS *******/
354         /** If ppt == 1 --> there was a PPT marker for the present tile */
355         OPJ_UINT32 ppt : 1;
356         /** indicates if a POC marker has been used O:NO, 1:YES */
357         OPJ_UINT32 POC : 1;
358 } opj_tcp_v2_t;
359
360
361
362
363
364 /**
365 Coding parameters
366 */
367 typedef struct opj_cp {
368         /** Digital cinema profile*/
369         OPJ_CINEMA_MODE cinema;
370         /** Maximum rate for each component. If == 0, component size limitation is not considered */
371         int max_comp_size;
372         /** Size of the image in bits*/
373         int img_size;
374         /** Rsiz*/
375         OPJ_RSIZ_CAPABILITIES rsiz;
376         /** Enabling Tile part generation*/
377         char tp_on;
378         /** Flag determining tile part generation*/
379         char tp_flag;
380         /** Position of tile part flag in progression order*/
381         int tp_pos;
382         /** allocation by rate/distortion */
383         int disto_alloc;
384         /** allocation by fixed layer */
385         int fixed_alloc;
386         /** add fixed_quality */
387         int fixed_quality;
388         /** if != 0, then original dimension divided by 2^(reduce); if == 0 or not used, image is decoded to the full resolution */
389         int reduce;
390         /** if != 0, then only the first "layer" layers are decoded; if == 0 or not used, all the quality layers are decoded */
391         int layer;
392         /** if == NO_LIMITATION, decode entire codestream; if == LIMIT_TO_MAIN_HEADER then only decode the main header */
393         OPJ_LIMIT_DECODING limit_decoding;
394         /** XTOsiz */
395         int tx0;
396         /** YTOsiz */
397         int ty0;
398         /** XTsiz */
399         int tdx;
400         /** YTsiz */
401         int tdy;
402         /** comment for coding */
403         char *comment;
404         /** number of tiles in width */
405         int tw;
406         /** number of tiles in heigth */
407         int th;
408         /** ID number of the tiles present in the codestream */
409         int *tileno;
410         /** size of the vector tileno */
411         int tileno_size;
412         /** packet header store there for futur use in t2_decode_packet */
413         unsigned char *ppm_data;
414         /** pointer remaining on the first byte of the first header if ppm is used */
415         unsigned char *ppm_data_first;
416         /** if ppm == 1 --> there was a PPM marker for the present tile */
417         int ppm;
418         /** use in case of multiple marker PPM (number of info already store) */
419         int ppm_store;
420         /** use in case of multiple marker PPM (case on non-finished previous info) */
421         int ppm_previous;
422         /** ppmbug1 */
423         int ppm_len;
424         /** tile coding parameters */
425         opj_tcp_t *tcps;
426         /** fixed layer */
427         int *matrice;
428 /* UniPG>> */
429 #ifdef USE_JPWL
430         /** enables writing of EPC in MH, thus activating JPWL */
431         opj_bool epc_on;
432         /** enables writing of EPB, in case of activated JPWL */
433         opj_bool epb_on;
434         /** enables writing of ESD, in case of activated JPWL */
435         opj_bool esd_on;
436         /** enables writing of informative techniques of ESD, in case of activated JPWL */
437         opj_bool info_on;
438         /** enables writing of RED, in case of activated JPWL */
439         opj_bool red_on;
440         /** error protection method for MH (0,1,16,32,37-128) */
441         int hprot_MH;
442         /** tile number of header protection specification (>=0) */
443         int hprot_TPH_tileno[JPWL_MAX_NO_TILESPECS];
444         /** error protection methods for TPHs (0,1,16,32,37-128) */
445         int hprot_TPH[JPWL_MAX_NO_TILESPECS];
446         /** tile number of packet protection specification (>=0) */
447         int pprot_tileno[JPWL_MAX_NO_PACKSPECS];
448         /** packet number of packet protection specification (>=0) */
449         int pprot_packno[JPWL_MAX_NO_PACKSPECS];
450         /** error protection methods for packets (0,1,16,32,37-128) */
451         int pprot[JPWL_MAX_NO_PACKSPECS];
452         /** enables writing of ESD, (0/2/4 bytes) */
453         int sens_size;
454         /** sensitivity addressing size (0=auto/2/4 bytes) */
455         int sens_addr;
456         /** sensitivity range (0-3) */
457         int sens_range;
458         /** sensitivity method for MH (-1,0-7) */
459         int sens_MH;
460         /** tile number of sensitivity specification (>=0) */
461         int sens_TPH_tileno[JPWL_MAX_NO_TILESPECS];
462         /** sensitivity methods for TPHs (-1,0-7) */
463         int sens_TPH[JPWL_MAX_NO_TILESPECS];
464         /** enables JPWL correction at the decoder */
465         opj_bool correct;
466         /** expected number of components at the decoder */
467         int exp_comps;
468         /** maximum number of tiles at the decoder */
469         int max_tiles;
470 #endif /* USE_JPWL */
471 /* <<UniPG */
472 } opj_cp_t;
473
474 typedef struct opj_encoding_param
475 {
476         /** Digital cinema profile*/
477         OPJ_CINEMA_MODE m_cinema;
478         /** Maximum rate for each component. If == 0, component size limitation is not considered */
479         OPJ_UINT32 m_max_comp_size;
480         /** Position of tile part flag in progression order*/
481         OPJ_INT32 m_tp_pos;
482         /** fixed layer */
483         OPJ_INT32 *m_matrice;
484         /** Flag determining tile part generation*/
485         OPJ_BYTE m_tp_flag;
486         /** allocation by rate/distortion */
487         OPJ_UINT32 m_disto_alloc : 1;
488         /** allocation by fixed layer */
489         OPJ_UINT32 m_fixed_alloc : 1;
490         /** add fixed_quality */
491         OPJ_UINT32 m_fixed_quality : 1;
492         /** Enabling Tile part generation*/
493         OPJ_UINT32 m_tp_on : 1;
494 }
495 opj_encoding_param_t;
496
497 typedef struct opj_decoding_param
498 {
499         /** if != 0, then original dimension divided by 2^(reduce); if == 0 or not used, image is decoded to the full resolution */
500         OPJ_UINT32 m_reduce;
501         /** if != 0, then only the first "layer" layers are decoded; if == 0 or not used, all the quality layers are decoded */
502         OPJ_UINT32 m_layer;
503 }
504 opj_decoding_param_t;
505
506
507 /**
508 Coding parameters
509 */
510 typedef struct opj_cp_v2
511 {
512         /** Size of the image in bits*/
513         /*int img_size;*/
514         /** Rsiz*/
515         OPJ_RSIZ_CAPABILITIES rsiz;
516         /** XTOsiz */
517         OPJ_UINT32 tx0; // MSD see norm
518         /** YTOsiz */
519         OPJ_UINT32 ty0; // MSD see norm
520         /** XTsiz */
521         OPJ_UINT32 tdx;
522         /** YTsiz */
523         OPJ_UINT32 tdy;
524         /** comment */
525         OPJ_CHAR *comment;
526         /** number of tiles in width */
527         OPJ_UINT32 tw;
528         /** number of tiles in heigth */
529         OPJ_UINT32 th;
530
531
532
533
534         /** packet header store there for futur use in t2_decode_packet */
535         OPJ_BYTE *ppm_data;
536         /** size of the ppm_data*/
537         OPJ_UINT32 ppm_len;
538         /** size of the ppm_data*/
539         OPJ_UINT32 ppm_data_read;
540
541         OPJ_BYTE *ppm_data_current;
542
543         /** packet header storage original buffer */
544         OPJ_BYTE *ppm_buffer;
545         /** pointer remaining on the first byte of the first header if ppm is used */
546         OPJ_BYTE *ppm_data_first;
547         /** Number of bytes actually stored inside the ppm_data */
548         OPJ_UINT32 ppm_data_size;
549         /** use in case of multiple marker PPM (number of info already store) */
550         OPJ_INT32 ppm_store;
551         /** use in case of multiple marker PPM (case on non-finished previous info) */
552         OPJ_INT32 ppm_previous;
553
554         /** tile coding parameters */
555         opj_tcp_v2_t *tcps;
556         union
557         {
558                 opj_decoding_param_t m_dec;
559                 opj_encoding_param_t m_enc;
560         }
561         m_specific_param;
562
563
564 /* UniPG>> */
565 #ifdef USE_JPWL
566         /** enables writing of EPC in MH, thus activating JPWL */
567         opj_bool epc_on;
568         /** enables writing of EPB, in case of activated JPWL */
569         opj_bool epb_on;
570         /** enables writing of ESD, in case of activated JPWL */
571         opj_bool esd_on;
572         /** enables writing of informative techniques of ESD, in case of activated JPWL */
573         opj_bool info_on;
574         /** enables writing of RED, in case of activated JPWL */
575         opj_bool red_on;
576         /** error protection method for MH (0,1,16,32,37-128) */
577         int hprot_MH;
578         /** tile number of header protection specification (>=0) */
579         int hprot_TPH_tileno[JPWL_MAX_NO_TILESPECS];
580         /** error protection methods for TPHs (0,1,16,32,37-128) */
581         int hprot_TPH[JPWL_MAX_NO_TILESPECS];
582         /** tile number of packet protection specification (>=0) */
583         int pprot_tileno[JPWL_MAX_NO_PACKSPECS];
584         /** packet number of packet protection specification (>=0) */
585         int pprot_packno[JPWL_MAX_NO_PACKSPECS];
586         /** error protection methods for packets (0,1,16,32,37-128) */
587         int pprot[JPWL_MAX_NO_PACKSPECS];
588         /** enables writing of ESD, (0/2/4 bytes) */
589         int sens_size;
590         /** sensitivity addressing size (0=auto/2/4 bytes) */
591         int sens_addr;
592         /** sensitivity range (0-3) */
593         int sens_range;
594         /** sensitivity method for MH (-1,0-7) */
595         int sens_MH;
596         /** tile number of sensitivity specification (>=0) */
597         int sens_TPH_tileno[JPWL_MAX_NO_TILESPECS];
598         /** sensitivity methods for TPHs (-1,0-7) */
599         int sens_TPH[JPWL_MAX_NO_TILESPECS];
600         /** enables JPWL correction at the decoder */
601         opj_bool correct;
602         /** expected number of components at the decoder */
603         int exp_comps;
604         /** maximum number of tiles at the decoder */
605         int max_tiles;
606 #endif /* USE_JPWL */
607
608         /******** FLAGS *********/
609         /** if ppm == 1 --> there was a PPM marker*/
610         OPJ_UINT32 ppm : 1;
611         /** tells if the parameter is a coding or decoding one */
612         OPJ_UINT32 m_is_decoder : 1;
613 /* <<UniPG */
614 } opj_cp_v2_t;
615
616
617 typedef struct opj_j2k_dec
618 {
619         /** locate in which part of the codestream the decoder is (main header, tile header, end) */
620         OPJ_UINT32 m_state;
621         /**
622          * store decoding parameters common to all tiles (information like COD, COC in main header)
623          */
624         opj_tcp_v2_t *m_default_tcp;
625         OPJ_BYTE  *m_header_data;
626         OPJ_UINT32 m_header_data_size;
627         /** to tell the tile part length */
628         OPJ_UINT32 m_sot_length;
629         /** Only tiles index in the correct range will be decoded.*/
630         OPJ_UINT32 m_start_tile_x;
631         OPJ_UINT32 m_start_tile_y;
632         OPJ_UINT32 m_end_tile_x;
633         OPJ_UINT32 m_end_tile_y;
634         /** to tell that a tile can be decoded. */
635         OPJ_UINT32 m_can_decode                 : 1;
636         OPJ_UINT32 m_discard_tiles              : 1;
637         OPJ_UINT32 m_skip_data                  : 1;
638
639 } opj_j2k_dec_t;
640
641 typedef struct opj_j2k_enc
642 {
643         /** Tile part number, regardless of poc, for each new poc, tp is reset to 1*/
644         OPJ_UINT32 m_current_poc_tile_part_number; // tp_num
645
646         /** Tile part number currently coding, taking into account POC. m_current_tile_part_number holds the total number of tile parts while encoding the last tile part.*/
647         OPJ_UINT32 m_current_tile_part_number; //cur_tp_num
648
649         /**
650         locate the start position of the TLM marker
651         after encoding the tilepart, a jump (in j2k_write_sod) is done to the TLM marker to store the value of its length.
652         */
653         OPJ_SIZE_T m_tlm_start;
654         /**
655          * Stores the sizes of the tlm.
656          */
657         OPJ_BYTE * m_tlm_sot_offsets_buffer;
658         /**
659          * The current offset of the tlm buffer.
660          */
661         OPJ_BYTE * m_tlm_sot_offsets_current;
662
663         /** Total num of tile parts in whole image = num tiles* num tileparts in each tile*/
664         /** used in TLMmarker*/
665         OPJ_UINT32 m_total_tile_parts;   // totnum_tp
666
667         /* encoded data for a tile */
668         OPJ_BYTE * m_encoded_tile_data;
669
670         /* size of the encoded_data */
671         OPJ_UINT32 m_encoded_tile_size;
672
673         /* encoded data for a tile */
674         OPJ_BYTE * m_header_tile_data;
675
676         /* size of the encoded_data */
677         OPJ_UINT32 m_header_tile_data_size;
678
679
680 } opj_j2k_enc_t;
681
682 /**
683 JPEG-2000 codestream reader/writer
684 */
685 typedef struct opj_j2k {
686         /** codec context */
687         opj_common_ptr cinfo;
688
689         /** locate in which part of the codestream the decoder is (main header, tile header, end) */
690         int state;
691         /** number of the tile curently concern by coding/decoding */
692         int curtileno;
693         /** Tile part number*/
694         int tp_num;
695         /** Tilepart number currently coding*/
696         int cur_tp_num;
697         /** Total number of tileparts of the current tile*/
698         int *cur_totnum_tp;
699         /**
700         locate the start position of the TLM marker  
701         after encoding the tilepart, a jump (in j2k_write_sod) is done to the TLM marker to store the value of its length. 
702         */
703         int tlm_start;
704         /** Total num of tile parts in whole image = num tiles* num tileparts in each tile*/
705         /** used in TLMmarker*/
706         int totnum_tp;  
707         /** 
708         locate the position of the end of the tile in the codestream, 
709         used to detect a truncated codestream (in j2k_read_sod)
710         */
711         unsigned char *eot;
712         /**
713         locate the start position of the SOT marker of the current coded tile:  
714         after encoding the tile, a jump (in j2k_write_sod) is done to the SOT marker to store the value of its length. 
715         */
716         int sot_start;
717         int sod_start;
718         /**
719         as the J2K-file is written in several parts during encoding, 
720         it enables to make the right correction in position return by cio_tell
721         */
722         int pos_correction;
723         /** array used to store the data of each tile */
724         unsigned char **tile_data;
725         /** array used to store the length of each tile */
726         int *tile_len;
727         /** 
728         decompression only : 
729         store decoding parameters common to all tiles (information like COD, COC in main header)
730         */
731         opj_tcp_t *default_tcp;
732         /** pointer to the encoded / decoded image */
733         opj_image_t *image;
734         /** pointer to the coding parameters */
735         opj_cp_t *cp;
736         /** helper used to write the index file */
737         opj_codestream_info_t *cstr_info;
738         /** pointer to the byte i/o stream */
739         opj_cio_t *cio;
740 } opj_j2k_t;
741
742 struct opj_tcd_v2;
743 /**
744 JPEG-2000 codestream reader/writer
745 */
746 typedef struct opj_j2k_v2
747 {
748         union
749         {
750                 opj_j2k_dec_t m_decoder;
751                 opj_j2k_enc_t m_encoder;
752         }
753         m_specific_param;
754
755         /** number of the tile curently concern by coding/decoding */
756         OPJ_UINT32 m_current_tile_number;
757
758         /** pointer to the encoded / decoded image */
759         //opj_image_t *m_image;
760         opj_image_header_t* m_image_header;
761
762         /** Coding parameters */
763         opj_cp_v2_t m_cp;
764
765         /** the list of procedures to exec **/
766         struct opj_procedure_list *     m_procedure_list;
767
768         /** the list of validation procedures to follow to make sure the code is valid **/
769         struct opj_procedure_list *     m_validation_list;
770
771         /** helper used to write the index file */
772         opj_codestream_info_v2_t *cstr_info;
773
774         /** the current tile coder/decoder **/
775         struct opj_tcd_v2 *     m_tcd;
776         //opj_tcd_v2_t *        m_tcd;
777
778         OPJ_UINT32 m_is_decoder : 1;
779
780 }
781 opj_j2k_v2_t;
782
783
784
785
786 /** @name Exported functions */
787 /*@{*/
788 /* ----------------------------------------------------------------------- */
789 /**
790 Creates a J2K decompression structure
791 @param cinfo Codec context info
792 @return Returns a handle to a J2K decompressor if successful, returns NULL otherwise
793 */
794 opj_j2k_t* j2k_create_decompress(opj_common_ptr cinfo);
795 /**
796 Destroy a J2K decompressor handle
797 @param j2k J2K decompressor handle to destroy
798 */
799 void j2k_destroy_decompress(opj_j2k_t *j2k);
800 /**
801 Setup the decoder decoding parameters using user parameters.
802 Decoding parameters are returned in j2k->cp. 
803 @param j2k J2K decompressor handle
804 @param parameters decompression parameters
805 */
806 void j2k_setup_decoder(opj_j2k_t *j2k, opj_dparameters_t *parameters);
807
808 void j2k_setup_decoder_v2(opj_j2k_v2_t *j2k, opj_dparameters_t *parameters);
809
810 /**
811 Decode an image from a JPEG-2000 codestream
812 @param j2k J2K decompressor handle
813 @param cio Input buffer stream
814 @param cstr_info Codestream information structure if required, NULL otherwise
815 @return Returns a decoded image if successful, returns NULL otherwise
816 */
817 opj_image_t* j2k_decode(opj_j2k_t *j2k, opj_cio_t *cio, opj_codestream_info_t *cstr_info);
818 /**
819 Decode an image form a JPT-stream (JPEG 2000, JPIP)
820 @param j2k J2K decompressor handle
821 @param cio Input buffer stream
822 @param cstr_info Codestream information structure if required, NULL otherwise
823 @return Returns a decoded image if successful, returns NULL otherwise
824 */
825 opj_image_t* j2k_decode_jpt_stream(opj_j2k_t *j2k, opj_cio_t *cio, opj_codestream_info_t *cstr_info);
826 /**
827 Creates a J2K compression structure
828 @param cinfo Codec context info
829 @return Returns a handle to a J2K compressor if successful, returns NULL otherwise
830 */
831 opj_j2k_t* j2k_create_compress(opj_common_ptr cinfo);
832
833 /**
834 Creates a J2K compression structure
835 @param cinfo Codec context info
836 @return Returns a handle to a J2K compressor if successful, returns NULL otherwise
837 */
838 opj_j2k_v2_t* j2k_create_compress_v2();
839
840 /**
841 Destroy a J2K compressor handle
842 @param j2k J2K compressor handle to destroy
843 */
844 void j2k_destroy_compress(opj_j2k_t *j2k);
845 /**
846 Setup the encoder parameters using the current image and using user parameters. 
847 Coding parameters are returned in j2k->cp. 
848 @param j2k J2K compressor handle
849 @param parameters compression parameters
850 @param image input filled image
851 */
852 void j2k_setup_encoder(opj_j2k_t *j2k, opj_cparameters_t *parameters, opj_image_t *image);
853 /**
854 Converts an enum type progression order to string type
855 */
856 char *j2k_convert_progression_order(OPJ_PROG_ORDER prg_order);
857 /**
858 Encode an image into a JPEG-2000 codestream
859 @param j2k J2K compressor handle
860 @param cio Output buffer stream
861 @param image Image to encode
862 @param cstr_info Codestream information structure if required, NULL otherwise
863 @return Returns true if successful, returns false otherwise
864 */
865 opj_bool j2k_encode(opj_j2k_t *j2k, opj_cio_t *cio, opj_image_t *image, opj_codestream_info_t *cstr_info);
866
867 /* ----------------------------------------------------------------------- */
868 /*@}*/
869
870 /*@}*/
871
872 /**
873  * Ends the decompression procedures and possibiliy add data to be read after the
874  * codestream.
875  */
876 opj_bool j2k_end_decompress(opj_j2k_v2_t *j2k, struct opj_stream_private *cio, struct opj_event_mgr * p_manager);
877
878 /**
879  * Reads a jpeg2000 codestream header structure.
880  *
881  * @param cio the stream to read data from.
882  * @param p_j2k the jpeg2000 codec.
883  * @param p_manager the user event manager.
884  *
885  * @return true if the box is valid.
886  */
887 opj_bool j2k_read_header(       struct opj_stream_private *p_stream,
888                                                         opj_j2k_v2_t* p_j2k,
889                                                         opj_file_info_t * p_file_info,
890                                                         struct opj_event_mgr* p_manager );
891
892
893 /**
894  * Destroys a jpeg2000 codec.
895  *
896  * @param       p_j2k   the jpeg20000 structure to destroy.
897  */
898 void j2k_destroy (opj_j2k_v2_t *p_j2k);
899
900 /**
901  * Decode tile data.
902  * @param       p_j2k           the jpeg2000 codec.
903  * @param       p_stream                        the stream to write data to.
904  * @param       p_manager       the user event manager.
905  */
906 opj_bool j2k_decode_tile (
907                                         opj_j2k_v2_t * p_j2k,
908                                         OPJ_UINT32 p_tile_index,
909                                         OPJ_BYTE * p_data,
910                                         OPJ_UINT32 p_data_size,
911                                         struct opj_stream_private *p_stream,
912                                         struct opj_event_mgr * p_manager
913                                         );
914
915 /**
916  * Reads a tile header.
917  * @param       p_j2k           the jpeg2000 codec.
918  * @param       p_stream                        the stream to write data to.
919  * @param       p_manager       the user event manager.
920  */
921 opj_bool j2k_read_tile_header (
922                                          opj_j2k_v2_t * p_j2k,
923                                          OPJ_UINT32 * p_tile_index,
924                                          OPJ_UINT32 * p_data_size,
925                                          OPJ_INT32 * p_tile_x0,
926                                          OPJ_INT32 * p_tile_y0,
927                                          OPJ_INT32 * p_tile_x1,
928                                          OPJ_INT32 * p_tile_y1,
929                                          OPJ_UINT32 * p_nb_comps,
930                                          opj_bool * p_go_on,
931                                          struct opj_stream_private *p_stream,
932                                          struct opj_event_mgr * p_manager
933                                         );
934
935
936 /**
937  * Sets the given area to be decoded. This function should be called right after opj_read_header and before any tile header reading.
938  *
939  * @param       p_j2k                   the jpeg2000 codec.
940  * @param       p_start_x               the left position of the rectangle to decode (in image coordinates).
941  * @param       p_end_x                 the right position of the rectangle to decode (in image coordinates).
942  * @param       p_start_y               the up position of the rectangle to decode (in image coordinates).
943  * @param       p_end_y                 the bottom position of the rectangle to decode (in image coordinates).
944  * @param       p_manager               the user event manager
945  *
946  * @return      true                    if the area could be set.
947  */
948 opj_bool j2k_set_decode_area(
949                         opj_j2k_v2_t *p_j2k,
950                         OPJ_INT32 p_start_x,
951                         OPJ_INT32 p_start_y,
952                         OPJ_INT32 p_end_x,
953                         OPJ_INT32 p_end_y,
954                         struct opj_event_mgr * p_manager
955                         );
956
957 /**
958  * Creates a J2K decompression structure.
959  *
960  * @return a handle to a J2K decompressor if successful, NULL otherwise.
961 */
962 opj_j2k_v2_t* j2k_create_decompress_v2();
963
964
965 #endif /* __J2K_H */