[trunk] rename public symbols with OPJ_ prefix
[openjpeg.git] / src / lib / openjp2 / t2.c
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  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #include "opj_includes.h"
33
34 /** @defgroup T2 T2 - Implementation of a tier-2 coding */
35 /*@{*/
36
37 /** @name Local static functions */
38 /*@{*/
39
40 static void t2_putcommacode(opj_bio_t *bio, int n);
41
42 static OPJ_UINT32 opj_t2_getcommacode(opj_bio_t *bio); 
43 /**
44 Variable length code for signalling delta Zil (truncation point)
45 @param bio  Bit Input/Output component
46 @param n    delta Zil
47 */
48 static void opj_t2_putnumpasses(opj_bio_t *bio, OPJ_UINT32 n);
49 static OPJ_UINT32 opj_t2_getnumpasses(opj_bio_t *bio);
50
51 /**
52 Encode a packet of a tile to a destination buffer
53 @param tileno Number of the tile encoded
54 @param tile Tile for which to write the packets
55 @param tcp Tile coding parameters
56 @param pi Packet identity
57 @param dest Destination buffer
58 @param p_data_written   FIXME DOC
59 @param len Length of the destination buffer
60 @param cstr_info Codestream information structure
61 @return
62 */
63 static opj_bool opj_t2_encode_packet(   OPJ_UINT32 tileno,
64                                         opj_tcd_tile_t *tile,
65                                         opj_tcp_t *tcp,
66                                         opj_pi_iterator_t *pi,
67                                         OPJ_BYTE *dest,
68                                         OPJ_UINT32 * p_data_written,
69                                         OPJ_UINT32 len,
70                                         opj_codestream_info_t *cstr_info);
71
72 /**
73 Decode a packet of a tile from a source buffer
74 @param t2 T2 handle
75 @param tile Tile for which to write the packets
76 @param tcp Tile coding parameters
77 @param pi Packet identity
78 @param src Source buffer
79 @param data_read   FIXME DOC
80 @param max_length  FIXME DOC
81 @param pack_info Packet information
82
83 @return  FIXME DOC
84 */
85 static opj_bool opj_t2_decode_packet(   opj_t2_t* t2,
86                                         opj_tcd_tile_t *tile,
87                                         opj_tcp_t *tcp,
88                                         opj_pi_iterator_t *pi,
89                                         OPJ_BYTE *src,
90                                         OPJ_UINT32 * data_read,
91                                         OPJ_UINT32 max_length,
92                                         opj_packet_info_t *pack_info);
93
94 static opj_bool opj_t2_skip_packet( opj_t2_t* p_t2,
95                                     opj_tcd_tile_t *p_tile,
96                                     opj_tcp_t *p_tcp,
97                                     opj_pi_iterator_t *p_pi,
98                                     OPJ_BYTE *p_src,
99                                     OPJ_UINT32 * p_data_read,
100                                     OPJ_UINT32 p_max_length,
101                                     opj_packet_info_t *p_pack_info);
102
103 static opj_bool opj_t2_read_packet_header(  opj_t2_t* p_t2,
104                                             opj_tcd_tile_t *p_tile,
105                                             opj_tcp_t *p_tcp,
106                                             opj_pi_iterator_t *p_pi,
107                                             opj_bool * p_is_data_present,
108                                             OPJ_BYTE *p_src_data,
109                                             OPJ_UINT32 * p_data_read,
110                                             OPJ_UINT32 p_max_length,
111                                             opj_packet_info_t *p_pack_info);
112
113 static opj_bool opj_t2_read_packet_data(opj_t2_t* p_t2,
114                                         opj_tcd_tile_t *p_tile,
115                                         opj_pi_iterator_t *p_pi,
116                                         OPJ_BYTE *p_src_data,
117                                         OPJ_UINT32 * p_data_read,
118                                         OPJ_UINT32 p_max_length,
119                                         opj_packet_info_t *pack_info);
120
121 static opj_bool opj_t2_skip_packet_data(opj_t2_t* p_t2,
122                                         opj_tcd_tile_t *p_tile,
123                                         opj_pi_iterator_t *p_pi,
124                                         OPJ_UINT32 * p_data_read,
125                                         OPJ_UINT32 p_max_length,
126                                         opj_packet_info_t *pack_info);
127
128 /**
129 @param cblk
130 @param index
131 @param cblksty
132 @param first
133 */
134 static opj_bool opj_t2_init_seg(    opj_tcd_cblk_dec_t* cblk,
135                                     OPJ_UINT32 index,
136                                     OPJ_UINT32 cblksty,
137                                     OPJ_UINT32 first);
138
139 /*@}*/
140
141 /*@}*/
142
143 /* ----------------------------------------------------------------------- */
144
145 /* #define RESTART 0x04 */
146 /* TODO MSD->LHE */
147 static void t2_putcommacode(opj_bio_t *bio, int n) {
148         while (--n >= 0) {
149                 opj_bio_write(bio, 1, 1);
150         }
151         opj_bio_write(bio, 0, 1);
152 }
153
154 OPJ_UINT32 opj_t2_getcommacode(opj_bio_t *bio) 
155 {
156     OPJ_UINT32 n = 0;
157     while (opj_bio_read(bio, 1)) {
158             ++n;
159     }
160     return n;
161 }
162
163 void opj_t2_putnumpasses(opj_bio_t *bio, OPJ_UINT32 n) {
164         if (n == 1) {
165                 opj_bio_write(bio, 0, 1);
166         } else if (n == 2) {
167                 opj_bio_write(bio, 2, 2);
168         } else if (n <= 5) {
169                 opj_bio_write(bio, 0xc | (n - 3), 4);
170         } else if (n <= 36) {
171                 opj_bio_write(bio, 0x1e0 | (n - 6), 9);
172         } else if (n <= 164) {
173                 opj_bio_write(bio, 0xff80 | (n - 37), 16);
174         }
175 }
176
177 OPJ_UINT32 opj_t2_getnumpasses(opj_bio_t *bio) {
178         OPJ_UINT32 n;
179         if (!opj_bio_read(bio, 1))
180                 return 1;
181         if (!opj_bio_read(bio, 1))
182                 return 2;
183         if ((n = opj_bio_read(bio, 2)) != 3)
184                 return (3 + n);
185         if ((n = opj_bio_read(bio, 5)) != 31)
186                 return (6 + n);
187         return (37 + opj_bio_read(bio, 7));
188 }
189
190 /* ----------------------------------------------------------------------- */
191
192 opj_bool opj_t2_encode_packets( opj_t2_t* p_t2,
193                                 OPJ_UINT32 p_tile_no,
194                                 opj_tcd_tile_t *p_tile,
195                                 OPJ_UINT32 p_maxlayers,
196                                 OPJ_BYTE *p_dest,
197                                 OPJ_UINT32 * p_data_written,
198                                 OPJ_UINT32 p_max_len,
199                                 opj_codestream_info_t *cstr_info,
200                                 OPJ_UINT32 p_tp_num,
201                                 OPJ_INT32 p_tp_pos,
202                                 OPJ_UINT32 p_pino,
203                                 J2K_T2_MODE p_t2_mode)
204 {
205         OPJ_BYTE *l_current_data = p_dest;
206         OPJ_UINT32 l_nb_bytes = 0;
207         OPJ_UINT32 compno;
208         OPJ_UINT32 poc;
209         opj_pi_iterator_t *l_pi = 00;
210         opj_pi_iterator_t *l_current_pi = 00;
211         opj_image_t *l_image = p_t2->image;
212         opj_cp_t *l_cp = p_t2->cp;
213         opj_tcp_t *l_tcp = &l_cp->tcps[p_tile_no];
214         OPJ_UINT32 pocno = l_cp->m_specific_param.m_enc.m_cinema == CINEMA4K_24? 2: 1;
215         OPJ_UINT32 l_max_comp = l_cp->m_specific_param.m_enc.m_max_comp_size > 0 ? l_image->numcomps : 1;
216         OPJ_UINT32 l_nb_pocs = l_tcp->numpocs + 1;
217
218         l_pi = opj_pi_initialise_encode(l_image, l_cp, p_tile_no, p_t2_mode);
219         if (!l_pi) {
220                 return OPJ_FALSE;
221         }
222
223         * p_data_written = 0;
224
225         if (p_t2_mode == THRESH_CALC ){ /* Calculating threshold */
226                 l_current_pi = l_pi;
227
228                 for     (compno = 0; compno < l_max_comp; ++compno) {
229                         OPJ_UINT32 l_comp_len = 0;
230                         l_current_pi = l_pi;
231
232                         for (poc = 0; poc < pocno ; ++poc) {
233                                 OPJ_UINT32 l_tp_num = compno;
234
235                                 /* TODO MSD : check why this function cannot fail (cf. v1) */
236                                 opj_pi_create_encode(l_pi, l_cp,p_tile_no,poc,l_tp_num,p_tp_pos,p_t2_mode);
237
238                                 while (opj_pi_next(l_current_pi)) {
239                                         if (l_current_pi->layno < p_maxlayers) {
240                                                 l_nb_bytes = 0;
241
242                                                 if (! opj_t2_encode_packet(p_tile_no,p_tile, l_tcp, l_current_pi, l_current_data, &l_nb_bytes, p_max_len, cstr_info)) {
243                                                         opj_pi_destroy(l_pi, l_nb_pocs);
244                                                         return OPJ_FALSE;
245                                                 }
246
247                                                 l_comp_len += l_nb_bytes;
248                                                 l_current_data += l_nb_bytes;
249                                                 p_max_len -= l_nb_bytes;
250
251                                                 * p_data_written += l_nb_bytes;
252                                         }
253                                 }
254
255                                 if (l_cp->m_specific_param.m_enc.m_max_comp_size) {
256                                         if (l_comp_len > l_cp->m_specific_param.m_enc.m_max_comp_size) {
257                                                 opj_pi_destroy(l_pi, l_nb_pocs);
258                                                 return OPJ_FALSE;
259                                         }
260                                 }
261
262                                 ++l_current_pi;
263                         }
264                 }
265         }
266         else {  /* t2_mode == FINAL_PASS  */
267                 opj_pi_create_encode(l_pi, l_cp,p_tile_no,p_pino,p_tp_num,p_tp_pos,p_t2_mode);
268
269                 l_current_pi = &l_pi[p_pino];
270
271                 while (opj_pi_next(l_current_pi)) {
272                         if (l_current_pi->layno < p_maxlayers) {
273                                 l_nb_bytes=0;
274
275                                 if (! opj_t2_encode_packet(p_tile_no,p_tile, l_tcp, l_current_pi, l_current_data, &l_nb_bytes, p_max_len, cstr_info)) {
276                                         opj_pi_destroy(l_pi, l_nb_pocs);
277                                         return OPJ_FALSE;
278                                 }
279
280                                 l_current_data += l_nb_bytes;
281                                 p_max_len -= l_nb_bytes;
282
283                                 * p_data_written += l_nb_bytes;
284
285                                 /* INDEX >> */
286                                 if(cstr_info) {
287                                         if(cstr_info->index_write) {
288                                                 opj_tile_info_t *info_TL = &cstr_info->tile[p_tile_no];
289                                                 opj_packet_info_t *info_PK = &info_TL->packet[cstr_info->packno];
290                                                 if (!cstr_info->packno) {
291                                                         info_PK->start_pos = info_TL->end_header + 1;
292                                                 } else {
293                                                         info_PK->start_pos = ((l_cp->m_specific_param.m_enc.m_tp_on | l_tcp->POC)&& info_PK->start_pos) ? info_PK->start_pos : info_TL->packet[cstr_info->packno - 1].end_pos + 1;
294                                                 }
295                                                 info_PK->end_pos = info_PK->start_pos + l_nb_bytes - 1;
296                                                 info_PK->end_ph_pos += info_PK->start_pos - 1;  /* End of packet header which now only represents the distance
297                                                                                                                                                                                                                                                    to start of packet is incremented by value of start of packet*/
298                                         }
299
300                                         cstr_info->packno++;
301                                 }
302                                 /* << INDEX */
303                                 ++p_tile->packno;
304                         }
305                 }
306         }
307
308         opj_pi_destroy(l_pi, l_nb_pocs);
309
310         return OPJ_TRUE;
311 }
312
313 opj_bool opj_t2_decode_packets( opj_t2_t *p_t2,
314                                 OPJ_UINT32 p_tile_no,
315                                 opj_tcd_tile_t *p_tile,
316                                 OPJ_BYTE *p_src,
317                                 OPJ_UINT32 * p_data_read,
318                                 OPJ_UINT32 p_max_len,
319                                 opj_codestream_index_t *p_cstr_index)
320 {
321         OPJ_BYTE *l_current_data = p_src;
322         opj_pi_iterator_t *l_pi = 00;
323         OPJ_UINT32 pino;
324         opj_image_t *l_image = p_t2->image;
325         opj_cp_t *l_cp = p_t2->cp;
326         opj_tcp_t *l_tcp = &(p_t2->cp->tcps[p_tile_no]);
327         OPJ_UINT32 l_nb_bytes_read;
328         OPJ_UINT32 l_nb_pocs = l_tcp->numpocs + 1;
329         opj_pi_iterator_t *l_current_pi = 00;
330 #ifdef TODO_MSD
331         OPJ_UINT32 curtp = 0;
332         OPJ_UINT32 tp_start_packno;
333 #endif 
334         opj_packet_info_t *l_pack_info = 00;
335         opj_image_comp_t* l_img_comp = 00;
336
337         OPJ_ARG_NOT_USED(p_cstr_index);
338
339 #ifdef TODO_MSD
340         if (p_cstr_index) {
341                 l_pack_info = p_cstr_index->tile_index[p_tile_no].packet;
342         }
343 #endif
344
345         /* create a packet iterator */
346         l_pi = opj_pi_create_decode(l_image, l_cp, p_tile_no);
347         if (!l_pi) {
348                 return OPJ_FALSE;
349         }
350
351
352         l_current_pi = l_pi;
353
354         for     (pino = 0; pino <= l_tcp->numpocs; ++pino) {
355
356                 /* if the resolution needed is to low, one dim of the tilec could be equal to zero
357                  * and no packets are used to encode this resolution and
358                  * l_current_pi->resno is always >= p_tile->comps[l_current_pi->compno].minimum_num_resolutions
359                  * and no l_img_comp->resno_decoded are computed
360                  */
361                 opj_bool* first_pass_failed = (opj_bool*)opj_malloc(l_image->numcomps * sizeof(opj_bool));
362                 if (!first_pass_failed)
363                 {
364                     opj_pi_destroy(l_pi,l_nb_pocs);
365                     return OPJ_FALSE;
366                 }
367                 memset(first_pass_failed, OPJ_TRUE, l_image->numcomps * sizeof(opj_bool));
368
369                 while (opj_pi_next(l_current_pi)) {
370
371
372                         if (l_tcp->num_layers_to_decode > l_current_pi->layno
373                                         && l_current_pi->resno < p_tile->comps[l_current_pi->compno].minimum_num_resolutions) {
374                                 l_nb_bytes_read = 0;
375
376                                 first_pass_failed[l_current_pi->compno] = OPJ_FALSE;
377
378                                 if (! opj_t2_decode_packet(p_t2,p_tile,l_tcp,l_current_pi,l_current_data,&l_nb_bytes_read,p_max_len,l_pack_info)) {
379                                         opj_pi_destroy(l_pi,l_nb_pocs);
380                                         opj_free(first_pass_failed);
381                                         return OPJ_FALSE;
382                                 }
383
384                                 l_img_comp = &(l_image->comps[l_current_pi->compno]);
385                                 l_img_comp->resno_decoded = opj_uint_max(l_current_pi->resno, l_img_comp->resno_decoded);
386                         }
387                         else {
388                                 l_nb_bytes_read = 0;
389                                 if (! opj_t2_skip_packet(p_t2,p_tile,l_tcp,l_current_pi,l_current_data,&l_nb_bytes_read,p_max_len,l_pack_info)) {
390                                         opj_pi_destroy(l_pi,l_nb_pocs);
391                                         opj_free(first_pass_failed);
392                                         return OPJ_FALSE;
393                                 }
394                         }
395
396                         if (first_pass_failed[l_current_pi->compno]) {
397                                 l_img_comp = &(l_image->comps[l_current_pi->compno]);
398                                 if (l_img_comp->resno_decoded == 0)
399                                         l_img_comp->resno_decoded = p_tile->comps[l_current_pi->compno].minimum_num_resolutions - 1;
400                         }
401
402                         l_current_data += l_nb_bytes_read;
403                         p_max_len -= l_nb_bytes_read;
404
405                         /* INDEX >> */
406 #ifdef TODO_MSD
407                         if(p_cstr_info) {
408                                 opj_tile_info_v2_t *info_TL = &p_cstr_info->tile[p_tile_no];
409                                 opj_packet_info_t *info_PK = &info_TL->packet[p_cstr_info->packno];
410                                 tp_start_packno = 0;
411                                 if (!p_cstr_info->packno) {
412                                         info_PK->start_pos = info_TL->end_header + 1;
413                                 } else if (info_TL->packet[p_cstr_info->packno-1].end_pos >= (OPJ_INT32)p_cstr_info->tile[p_tile_no].tp[curtp].tp_end_pos){ /* New tile part */
414                                         info_TL->tp[curtp].tp_numpacks = p_cstr_info->packno - tp_start_packno; /* Number of packets in previous tile-part */
415                                         tp_start_packno = p_cstr_info->packno;
416                                         curtp++;
417                                         info_PK->start_pos = p_cstr_info->tile[p_tile_no].tp[curtp].tp_end_header+1;
418                                 } else {
419                                         info_PK->start_pos = (l_cp->m_specific_param.m_enc.m_tp_on && info_PK->start_pos) ? info_PK->start_pos : info_TL->packet[p_cstr_info->packno - 1].end_pos + 1;
420                                 }
421                                 info_PK->end_pos = info_PK->start_pos + l_nb_bytes_read - 1;
422                                 info_PK->end_ph_pos += info_PK->start_pos - 1;  /* End of packet header which now only represents the distance */
423                                 ++p_cstr_info->packno;
424                         }
425 #endif
426                         /* << INDEX */
427                 }
428                 ++l_current_pi;
429
430                 opj_free(first_pass_failed);
431         }
432         /* INDEX >> */
433 #ifdef TODO_MSD
434         if
435                 (p_cstr_info) {
436                 p_cstr_info->tile[p_tile_no].tp[curtp].tp_numpacks = p_cstr_info->packno - tp_start_packno; /* Number of packets in last tile-part */
437         }
438 #endif
439         /* << INDEX */
440
441         /* don't forget to release pi */
442         opj_pi_destroy(l_pi,l_nb_pocs);
443         *p_data_read = l_current_data - p_src;
444         return OPJ_TRUE;
445 }
446
447 /* ----------------------------------------------------------------------- */
448
449 /**
450  * Creates a Tier 2 handle
451  *
452  * @param       p_image         Source or destination image
453  * @param       p_cp            Image coding parameters.
454  * @return              a new T2 handle if successful, NULL otherwise.
455 */
456 opj_t2_t* opj_t2_create(opj_image_t *p_image, opj_cp_t *p_cp)
457 {
458         /* create the t2 structure */
459         opj_t2_t *l_t2 = (opj_t2_t*)opj_malloc(sizeof(opj_t2_t));
460         if (!l_t2) {
461                 return NULL;
462         }
463         memset(l_t2,0,sizeof(opj_t2_t));
464
465         l_t2->image = p_image;
466         l_t2->cp = p_cp;
467
468         return l_t2;
469 }
470
471 void opj_t2_destroy(opj_t2_t *t2) {
472         if(t2) {
473                 opj_free(t2);
474         }
475 }
476
477 opj_bool opj_t2_decode_packet(  opj_t2_t* p_t2,
478                                 opj_tcd_tile_t *p_tile,
479                                 opj_tcp_t *p_tcp,
480                                 opj_pi_iterator_t *p_pi,
481                                 OPJ_BYTE *p_src,
482                                 OPJ_UINT32 * p_data_read,
483                                 OPJ_UINT32 p_max_length,
484                                 opj_packet_info_t *p_pack_info)
485 {
486         opj_bool l_read_data;
487         OPJ_UINT32 l_nb_bytes_read = 0;
488         OPJ_UINT32 l_nb_total_bytes_read = 0;
489
490         *p_data_read = 0;
491
492         if (! opj_t2_read_packet_header(p_t2,p_tile,p_tcp,p_pi,&l_read_data,p_src,&l_nb_bytes_read,p_max_length,p_pack_info)) {
493                 return OPJ_FALSE;
494         }
495
496         p_src += l_nb_bytes_read;
497         l_nb_total_bytes_read += l_nb_bytes_read;
498         p_max_length -= l_nb_bytes_read;
499
500         /* we should read data for the packet */
501         if (l_read_data) {
502                 l_nb_bytes_read = 0;
503
504                 if (! opj_t2_read_packet_data(p_t2,p_tile,p_pi,p_src,&l_nb_bytes_read,p_max_length,p_pack_info)) {
505                         return OPJ_FALSE;
506                 }
507
508                 l_nb_total_bytes_read += l_nb_bytes_read;
509         }
510
511         *p_data_read = l_nb_total_bytes_read;
512
513         return OPJ_TRUE;
514 }
515
516 opj_bool opj_t2_encode_packet(  OPJ_UINT32 tileno,
517                                 opj_tcd_tile_t * tile,
518                                 opj_tcp_t * tcp,
519                                 opj_pi_iterator_t *pi,
520                                 OPJ_BYTE *dest,
521                                 OPJ_UINT32 * p_data_written,
522                                 OPJ_UINT32 length,
523                                 opj_codestream_info_t *cstr_info)
524 {
525         OPJ_UINT32 bandno, cblkno;
526         OPJ_BYTE *c = dest;
527         OPJ_UINT32 l_nb_bytes;
528         OPJ_UINT32 compno = pi->compno; /* component value */
529         OPJ_UINT32 resno  = pi->resno;          /* resolution level value */
530         OPJ_UINT32 precno = pi->precno; /* precinct value */
531         OPJ_UINT32 layno  = pi->layno;          /* quality layer value */
532         OPJ_UINT32 l_nb_blocks;
533         opj_tcd_band_t *band = 00;
534         opj_tcd_cblk_enc_t* cblk = 00;
535         opj_tcd_pass_t *pass = 00;
536
537         opj_tcd_tilecomp_t *tilec = &tile->comps[compno];
538         opj_tcd_resolution_t *res = &tilec->resolutions[resno];
539
540         opj_bio_t *bio = 00;    /* BIO component */
541
542         /* <SOP 0xff91> */
543         if (tcp->csty & J2K_CP_CSTY_SOP) {
544                 c[0] = 255;
545                 c[1] = 145;
546                 c[2] = 0;
547                 c[3] = 4;
548                 c[4] = (tile->packno % 65536) / 256;
549                 c[5] = (tile->packno % 65536) % 256;
550                 c += 6;
551                 length -= 6;
552         }
553         /* </SOP> */
554
555         if (!layno) {
556                 band = res->bands;
557
558                 for(bandno = 0; bandno < res->numbands; ++bandno) {
559                         opj_tcd_precinct_t *prc = &band->precincts[precno];
560
561                         opj_tgt_reset(prc->incltree);
562                         opj_tgt_reset(prc->imsbtree);
563
564                         l_nb_blocks = prc->cw * prc->ch;
565                         for     (cblkno = 0; cblkno < l_nb_blocks; ++cblkno) {
566                                 cblk = &prc->cblks.enc[cblkno];
567
568                                 cblk->numpasses = 0;
569                                 opj_tgt_setvalue(prc->imsbtree, cblkno, band->numbps - cblk->numbps);
570                         }
571                         ++band;
572                 }
573         }
574
575         bio = opj_bio_create();
576         opj_bio_init_enc(bio, c, length);
577         opj_bio_write(bio, 1, 1);           /* Empty header bit */
578
579         /* Writing Packet header */
580         band = res->bands;
581         for (bandno = 0; bandno < res->numbands; ++bandno)      {
582                 opj_tcd_precinct_t *prc = &band->precincts[precno];
583
584                 l_nb_blocks = prc->cw * prc->ch;
585                 cblk = prc->cblks.enc;
586
587                 for (cblkno = 0; cblkno < l_nb_blocks; ++cblkno) {
588                         opj_tcd_layer_t *layer = &cblk->layers[layno];
589
590                         if (!cblk->numpasses && layer->numpasses) {
591                                 opj_tgt_setvalue(prc->incltree, cblkno, layno);
592                         }
593
594                         ++cblk;
595                 }
596
597                 cblk = prc->cblks.enc;
598                 for (cblkno = 0; cblkno < l_nb_blocks; cblkno++) {
599                         opj_tcd_layer_t *layer = &cblk->layers[layno];
600                         OPJ_UINT32 increment = 0;
601                         OPJ_UINT32 nump = 0;
602                         OPJ_UINT32 len = 0, passno;
603                         OPJ_UINT32 l_nb_passes;
604
605                         /* cblk inclusion bits */
606                         if (!cblk->numpasses) {
607                                 opj_tgt_encode(bio, prc->incltree, cblkno, layno + 1);
608                         } else {
609                                 opj_bio_write(bio, layer->numpasses != 0, 1);
610                         }
611
612                         /* if cblk not included, go to the next cblk  */
613                         if (!layer->numpasses) {
614                                 ++cblk;
615                                 continue;
616                         }
617
618                         /* if first instance of cblk --> zero bit-planes information */
619                         if (!cblk->numpasses) {
620                                 cblk->numlenbits = 3;
621                                 opj_tgt_encode(bio, prc->imsbtree, cblkno, 999);
622                         }
623
624                         /* number of coding passes included */
625                         opj_t2_putnumpasses(bio, layer->numpasses);
626                         l_nb_passes = cblk->numpasses + layer->numpasses;
627                         pass = cblk->passes +  cblk->numpasses;
628
629                         /* computation of the increase of the length indicator and insertion in the header     */
630                         for (passno = cblk->numpasses; passno < l_nb_passes; ++passno) {
631                                 ++nump;
632                                 len += pass->len;
633
634                                 if (pass->term || passno == (cblk->numpasses + layer->numpasses) - 1) {
635                                         increment = opj_int_max(increment, opj_int_floorlog2(len) + 1 - (cblk->numlenbits + opj_int_floorlog2(nump)));
636                                         len = 0;
637                                         nump = 0;
638                                 }
639
640                                 ++pass;
641                         }
642                         t2_putcommacode(bio, increment);
643
644                         /* computation of the new Length indicator */
645                         cblk->numlenbits += increment;
646
647                         pass = cblk->passes +  cblk->numpasses;
648                         /* insertion of the codeword segment length */
649                         for (passno = cblk->numpasses; passno < l_nb_passes; ++passno) {
650                                 nump++;
651                                 len += pass->len;
652
653                                 if (pass->term || passno == (cblk->numpasses + layer->numpasses) - 1) {
654                                         opj_bio_write(bio, len, cblk->numlenbits + opj_int_floorlog2(nump));
655                                         len = 0;
656                                         nump = 0;
657                                 }
658                                 ++pass;
659                         }
660
661                         ++cblk;
662                 }
663
664                 ++band;
665         }
666
667         if (!opj_bio_flush(bio)) {
668                 opj_bio_destroy(bio);
669                 return OPJ_FALSE;               /* modified to eliminate longjmp !! */
670         }
671
672         l_nb_bytes = opj_bio_numbytes(bio);
673         c += l_nb_bytes;
674         length -= l_nb_bytes;
675
676         opj_bio_destroy(bio);
677
678         /* <EPH 0xff92> */
679         if (tcp->csty & J2K_CP_CSTY_EPH) {
680                 c[0] = 255;
681                 c[1] = 146;
682                 c += 2;
683                 length -= 2;
684         }
685         /* </EPH> */
686
687         /* << INDEX */
688         /* End of packet header position. Currently only represents the distance to start of packet
689            Will be updated later by incrementing with packet start value*/
690         if(cstr_info && cstr_info->index_write) {
691                 opj_packet_info_t *info_PK = &cstr_info->tile[tileno].packet[cstr_info->packno];
692                 info_PK->end_ph_pos = (OPJ_INT32)(c - dest);
693         }
694         /* INDEX >> */
695
696         /* Writing the packet body */
697         band = res->bands;
698         for (bandno = 0; bandno < res->numbands; bandno++) {
699                 opj_tcd_precinct_t *prc = &band->precincts[precno];
700
701                 l_nb_blocks = prc->cw * prc->ch;
702                 cblk = prc->cblks.enc;
703
704                 for (cblkno = 0; cblkno < l_nb_blocks; ++cblkno) {
705                         opj_tcd_layer_t *layer = &cblk->layers[layno];
706
707                         if (!layer->numpasses) {
708                                 ++cblk;
709                                 continue;
710                         }
711
712                         if (layer->len > length) {
713                                 return OPJ_FALSE;
714                         }
715
716                         memcpy(c, layer->data, layer->len);
717                         cblk->numpasses += layer->numpasses;
718                         c += layer->len;
719                         length -= layer->len;
720
721                         /* << INDEX */
722                         if(cstr_info && cstr_info->index_write) {
723                                 opj_packet_info_t *info_PK = &cstr_info->tile[tileno].packet[cstr_info->packno];
724                                 info_PK->disto += layer->disto;
725                                 if (cstr_info->D_max < info_PK->disto) {
726                                         cstr_info->D_max = info_PK->disto;
727                                 }
728                         }
729
730                         ++cblk;
731                         /* INDEX >> */
732                 }
733                 ++band;
734         }
735
736         * p_data_written += (c - dest);
737
738         return OPJ_TRUE;
739 }
740
741 static opj_bool opj_t2_skip_packet( opj_t2_t* p_t2,
742                                     opj_tcd_tile_t *p_tile,
743                                     opj_tcp_t *p_tcp,
744                                     opj_pi_iterator_t *p_pi,
745                                     OPJ_BYTE *p_src,
746                                     OPJ_UINT32 * p_data_read,
747                                     OPJ_UINT32 p_max_length,
748                                     opj_packet_info_t *p_pack_info)
749 {
750         opj_bool l_read_data;
751         OPJ_UINT32 l_nb_bytes_read = 0;
752         OPJ_UINT32 l_nb_total_bytes_read = 0;
753
754         *p_data_read = 0;
755
756         if (! opj_t2_read_packet_header(p_t2,p_tile,p_tcp,p_pi,&l_read_data,p_src,&l_nb_bytes_read,p_max_length,p_pack_info)) {
757                 return OPJ_FALSE;
758         }
759
760         p_src += l_nb_bytes_read;
761         l_nb_total_bytes_read += l_nb_bytes_read;
762         p_max_length -= l_nb_bytes_read;
763
764         /* we should read data for the packet */
765         if (l_read_data) {
766                 l_nb_bytes_read = 0;
767
768                 if (! opj_t2_skip_packet_data(p_t2,p_tile,p_pi,&l_nb_bytes_read,p_max_length,p_pack_info)) {
769                         return OPJ_FALSE;
770                 }
771
772                 l_nb_total_bytes_read += l_nb_bytes_read;
773         }
774         *p_data_read = l_nb_total_bytes_read;
775
776         return OPJ_TRUE;
777 }
778
779
780
781 opj_bool opj_t2_read_packet_header( opj_t2_t* p_t2,
782                                     opj_tcd_tile_t *p_tile,
783                                     opj_tcp_t *p_tcp,
784                                     opj_pi_iterator_t *p_pi,
785                                     opj_bool * p_is_data_present,
786                                     OPJ_BYTE *p_src_data,
787                                     OPJ_UINT32 * p_data_read,
788                                     OPJ_UINT32 p_max_length,
789                                     opj_packet_info_t *p_pack_info)
790
791 {
792         /* loop */
793         OPJ_UINT32 bandno, cblkno;
794         OPJ_UINT32 l_nb_code_blocks;
795         OPJ_UINT32 l_remaining_length;
796         OPJ_UINT32 l_header_length;
797         OPJ_UINT32 * l_modified_length_ptr = 00;
798         OPJ_BYTE *l_current_data = p_src_data;
799         opj_cp_t *l_cp = p_t2->cp;
800         opj_bio_t *l_bio = 00;  /* BIO component */
801         opj_tcd_band_t *l_band = 00;
802         opj_tcd_cblk_dec_t* l_cblk = 00;
803         opj_tcd_resolution_t* l_res = &p_tile->comps[p_pi->compno].resolutions[p_pi->resno];
804
805         OPJ_BYTE *l_header_data = 00;
806         OPJ_BYTE **l_header_data_start = 00;
807
808         OPJ_UINT32 l_present;
809
810         if (p_pi->layno == 0) {
811                 l_band = l_res->bands;
812
813                 /* reset tagtrees */
814                 for (bandno = 0; bandno < l_res->numbands; ++bandno) {
815                         opj_tcd_precinct_t *l_prc = &l_band->precincts[p_pi->precno];
816
817                         if ( ! ((l_band->x1-l_band->x0 == 0)||(l_band->y1-l_band->y0 == 0)) ) {
818                                 opj_tgt_reset(l_prc->incltree);
819                                 opj_tgt_reset(l_prc->imsbtree);
820                                 l_cblk = l_prc->cblks.dec;
821
822                                 l_nb_code_blocks = l_prc->cw * l_prc->ch;
823                                 for (cblkno = 0; cblkno < l_nb_code_blocks; ++cblkno) {
824                                         l_cblk->numsegs = 0;
825                                         l_cblk->real_num_segs = 0;
826                                         ++l_cblk;
827                                 }
828                         }
829
830                         ++l_band;
831                 }
832         }
833
834         /* SOP markers */
835
836         if (p_tcp->csty & J2K_CP_CSTY_SOP) {
837                 if ((*l_current_data) != 0xff || (*(l_current_data + 1) != 0x91)) {
838                         /* TODO opj_event_msg(t2->cinfo->event_mgr, EVT_WARNING, "Expected SOP marker\n"); */
839                 } else {
840                         l_current_data += 6;
841                 }
842
843                 /** TODO : check the Nsop value */
844         }
845
846         /*
847         When the marker PPT/PPM is used the packet header are store in PPT/PPM marker
848         This part deal with this caracteristic
849         step 1: Read packet header in the saved structure
850         step 2: Return to codestream for decoding
851         */
852
853         l_bio = opj_bio_create();
854         if (! l_bio) {
855                 return OPJ_FALSE;
856         }
857
858         if (l_cp->ppm == 1) { /* PPM */
859                 l_header_data_start = &l_cp->ppm_data;
860                 l_header_data = *l_header_data_start;
861                 l_modified_length_ptr = &(l_cp->ppm_len);
862
863         }
864         else if (p_tcp->ppt == 1) { /* PPT */
865                 l_header_data_start = &(p_tcp->ppt_data);
866                 l_header_data = *l_header_data_start;
867                 l_modified_length_ptr = &(p_tcp->ppt_len);
868         }
869         else {  /* Normal Case */
870                 l_header_data_start = &(l_current_data);
871                 l_header_data = *l_header_data_start;
872                 l_remaining_length = p_src_data+p_max_length-l_header_data;
873                 l_modified_length_ptr = &(l_remaining_length);
874         }
875
876         opj_bio_init_dec(l_bio, l_header_data,*l_modified_length_ptr);
877
878         l_present = opj_bio_read(l_bio, 1);
879         if (!l_present) {
880             /* TODO MSD: no test to control the output of this function*/
881                 opj_bio_inalign(l_bio);
882                 l_header_data += opj_bio_numbytes(l_bio);
883                 opj_bio_destroy(l_bio);
884
885                 /* EPH markers */
886                 if (p_tcp->csty & J2K_CP_CSTY_EPH) {
887                         if ((*l_header_data) != 0xff || (*(l_header_data + 1) != 0x92)) {
888                                 printf("Error : expected EPH marker\n");
889                         } else {
890                                 l_header_data += 2;
891                         }
892                 }
893
894                 l_header_length = (l_header_data - *l_header_data_start);
895                 *l_modified_length_ptr -= l_header_length;
896                 *l_header_data_start += l_header_length;
897
898                 /* << INDEX */
899                 /* End of packet header position. Currently only represents the distance to start of packet
900                    Will be updated later by incrementing with packet start value */
901                 if (p_pack_info) {
902                         p_pack_info->end_ph_pos = (OPJ_INT32)(l_current_data - p_src_data);
903                 }
904                 /* INDEX >> */
905
906                 * p_is_data_present = OPJ_FALSE;
907                 *p_data_read = l_current_data - p_src_data;
908                 return OPJ_TRUE;
909         }
910
911         l_band = l_res->bands;
912         for (bandno = 0; bandno < l_res->numbands; ++bandno) {
913                 opj_tcd_precinct_t *l_prc = &(l_band->precincts[p_pi->precno]);
914
915                 if ((l_band->x1-l_band->x0 == 0)||(l_band->y1-l_band->y0 == 0)) {
916                         ++l_band;
917                         continue;
918                 }
919
920                 l_nb_code_blocks = l_prc->cw * l_prc->ch;
921                 l_cblk = l_prc->cblks.dec;
922                 for (cblkno = 0; cblkno < l_nb_code_blocks; cblkno++) {
923                         OPJ_UINT32 l_included,l_increment, l_segno;
924                         OPJ_INT32 n;
925
926                         /* if cblk not yet included before --> inclusion tagtree */
927                         if (!l_cblk->numsegs) {
928                                 l_included = opj_tgt_decode(l_bio, l_prc->incltree, cblkno, p_pi->layno + 1);
929                                 /* else one bit */
930                         }
931                         else {
932                                 l_included = opj_bio_read(l_bio, 1);
933                         }
934
935                         /* if cblk not included */
936                         if (!l_included) {
937                                 l_cblk->numnewpasses = 0;
938                                 ++l_cblk;
939                                 continue;
940                         }
941
942                         /* if cblk not yet included --> zero-bitplane tagtree */
943                         if (!l_cblk->numsegs) {
944                                 OPJ_UINT32 i = 0;
945
946                                 while (!opj_tgt_decode(l_bio, l_prc->imsbtree, cblkno, i)) {
947                                         ++i;
948                                 }
949
950                                 l_cblk->numbps = l_band->numbps + 1 - i;
951                                 l_cblk->numlenbits = 3;
952                         }
953
954                         /* number of coding passes */
955                         l_cblk->numnewpasses = opj_t2_getnumpasses(l_bio);
956                         l_increment = opj_t2_getcommacode(l_bio);
957
958                         /* length indicator increment */
959                         l_cblk->numlenbits += l_increment;
960                         l_segno = 0;
961
962                         if (!l_cblk->numsegs) {
963                                 if (! opj_t2_init_seg(l_cblk, l_segno, p_tcp->tccps[p_pi->compno].cblksty, 1)) {
964                                         opj_bio_destroy(l_bio);
965                                         return OPJ_FALSE;
966                                 }
967                         }
968                         else {
969                                 l_segno = l_cblk->numsegs - 1;
970                                 if (l_cblk->segs[l_segno].numpasses == l_cblk->segs[l_segno].maxpasses) {
971                                         ++l_segno;
972                                         if (! opj_t2_init_seg(l_cblk, l_segno, p_tcp->tccps[p_pi->compno].cblksty, 0)) {
973                                                 opj_bio_destroy(l_bio);
974                                                 return OPJ_FALSE;
975                                         }
976                                 }
977                         }
978                         n = l_cblk->numnewpasses;
979
980                         do {
981                                 l_cblk->segs[l_segno].numnewpasses = opj_int_min(l_cblk->segs[l_segno].maxpasses - l_cblk->segs[l_segno].numpasses, n);
982                                 l_cblk->segs[l_segno].newlen = opj_bio_read(l_bio, l_cblk->numlenbits + opj_uint_floorlog2(l_cblk->segs[l_segno].numnewpasses));
983
984                                 n -= l_cblk->segs[l_segno].numnewpasses;
985                                 if (n > 0) {
986                                         ++l_segno;
987
988                                         if (! opj_t2_init_seg(l_cblk, l_segno, p_tcp->tccps[p_pi->compno].cblksty, 0)) {
989                                                 opj_bio_destroy(l_bio);
990                                                 return OPJ_FALSE;
991                                         }
992                                 }
993                         } while (n > 0);
994
995                         ++l_cblk;
996                 }
997
998                 ++l_band;
999         }
1000
1001         if (!opj_bio_inalign(l_bio)) {
1002                 opj_bio_destroy(l_bio);
1003                 return OPJ_FALSE;
1004         }
1005
1006         l_header_data += opj_bio_numbytes(l_bio);
1007         opj_bio_destroy(l_bio);
1008
1009         /* EPH markers */
1010         if (p_tcp->csty & J2K_CP_CSTY_EPH) {
1011                 if ((*l_header_data) != 0xff || (*(l_header_data + 1) != 0x92)) {
1012                         /* TODO opj_event_msg(t2->cinfo->event_mgr, EVT_ERROR, "Expected EPH marker\n"); */
1013                 } else {
1014                         l_header_data += 2;
1015                 }
1016         }
1017
1018         l_header_length = (l_header_data - *l_header_data_start);
1019         *l_modified_length_ptr -= l_header_length;
1020         *l_header_data_start += l_header_length;
1021
1022         /* << INDEX */
1023         /* End of packet header position. Currently only represents the distance to start of packet
1024          Will be updated later by incrementing with packet start value */
1025         if (p_pack_info) {
1026                 p_pack_info->end_ph_pos = (OPJ_INT32)(l_current_data - p_src_data);
1027         }
1028         /* INDEX >> */
1029
1030         *p_is_data_present = OPJ_TRUE;
1031         *p_data_read = l_current_data - p_src_data;
1032
1033         return OPJ_TRUE;
1034 }
1035
1036 opj_bool opj_t2_read_packet_data(   opj_t2_t* p_t2,
1037                                     opj_tcd_tile_t *p_tile,
1038                                     opj_pi_iterator_t *p_pi,
1039                                     OPJ_BYTE *p_src_data,
1040                                     OPJ_UINT32 * p_data_read,
1041                                     OPJ_UINT32 p_max_length,
1042                                     opj_packet_info_t *pack_info)
1043 {
1044         OPJ_UINT32 bandno, cblkno;
1045         OPJ_UINT32 l_nb_code_blocks;
1046         OPJ_BYTE *l_current_data = p_src_data;
1047         opj_tcd_band_t *l_band = 00;
1048         opj_tcd_cblk_dec_t* l_cblk = 00;
1049         opj_tcd_resolution_t* l_res = &p_tile->comps[p_pi->compno].resolutions[p_pi->resno];
1050
1051         OPJ_ARG_NOT_USED(p_t2);
1052         OPJ_ARG_NOT_USED(pack_info);
1053
1054         l_band = l_res->bands;
1055         for (bandno = 0; bandno < l_res->numbands; ++bandno) {
1056                 opj_tcd_precinct_t *l_prc = &l_band->precincts[p_pi->precno];
1057
1058                 if ((l_band->x1-l_band->x0 == 0)||(l_band->y1-l_band->y0 == 0)) {
1059                         ++l_band;
1060                         continue;
1061                 }
1062
1063                 l_nb_code_blocks = l_prc->cw * l_prc->ch;
1064                 l_cblk = l_prc->cblks.dec;
1065
1066                 for (cblkno = 0; cblkno < l_nb_code_blocks; ++cblkno) {
1067                         opj_tcd_seg_t *l_seg = 00;
1068
1069                         if (!l_cblk->numnewpasses) {
1070                                 /* nothing to do */
1071                                 ++l_cblk;
1072                                 continue;
1073                         }
1074
1075                         if (!l_cblk->numsegs) {
1076                                 l_seg = l_cblk->segs;
1077                                 ++l_cblk->numsegs;
1078                                 l_cblk->len = 0;
1079                         }
1080                         else {
1081                                 l_seg = &l_cblk->segs[l_cblk->numsegs - 1];
1082
1083                                 if (l_seg->numpasses == l_seg->maxpasses) {
1084                                         ++l_seg;
1085                                         ++l_cblk->numsegs;
1086                                 }
1087                         }
1088
1089                         do {
1090                                 if (l_current_data + l_seg->newlen > p_src_data + p_max_length) {
1091                                         return OPJ_FALSE;
1092                                 }
1093
1094 #ifdef USE_JPWL
1095                         /* we need here a j2k handle to verify if making a check to
1096                         the validity of cblocks parameters is selected from user (-W) */
1097
1098                                 /* let's check that we are not exceeding */
1099                                 if ((l_cblk->len + l_seg->newlen) > 8192) {
1100                                         opj_event_msg(p_t2->cinfo, EVT_WARNING,
1101                                                 "JPWL: segment too long (%d) for codeblock %d (p=%d, b=%d, r=%d, c=%d)\n",
1102                                                 l_seg->newlen, cblkno, p_pi->precno, bandno, p_pi->resno, p_pi->compno);
1103                                         if (!JPWL_ASSUME) {
1104                                                 opj_event_msg(p_t2->cinfo, EVT_ERROR, "JPWL: giving up\n");
1105                                                 return OPJ_FALSE;
1106                                         }
1107                                         l_seg->newlen = 8192 - l_cblk->len;
1108                                         opj_event_msg(p_t2->cinfo, EVT_WARNING, "      - truncating segment to %d\n", l_seg->newlen);
1109                                         break;
1110                                 };
1111
1112 #endif /* USE_JPWL */
1113
1114                                 if ((l_cblk->len + l_seg->newlen) > 8192) {
1115                                         return OPJ_FALSE;
1116                                 }
1117                                
1118                                 memcpy(l_cblk->data + l_cblk->len, l_current_data, l_seg->newlen);
1119
1120                                 if (l_seg->numpasses == 0) {
1121                                         l_seg->data = &l_cblk->data;
1122                                         l_seg->dataindex = l_cblk->len;
1123                                 }
1124
1125                                 l_current_data += l_seg->newlen;
1126                                 l_seg->numpasses += l_seg->numnewpasses;
1127                                 l_cblk->numnewpasses -= l_seg->numnewpasses;
1128
1129                                 l_seg->real_num_passes = l_seg->numpasses;
1130                                 l_cblk->len += l_seg->newlen;
1131                                 l_seg->len += l_seg->newlen;
1132
1133                                 if (l_cblk->numnewpasses > 0) {
1134                                         ++l_seg;
1135                                         ++l_cblk->numsegs;
1136                                 }
1137                         } while (l_cblk->numnewpasses > 0);
1138
1139                         l_cblk->real_num_segs = l_cblk->numsegs;
1140                         ++l_cblk;
1141                 }
1142
1143                 ++l_band;
1144         }
1145
1146         *(p_data_read) = l_current_data - p_src_data;
1147
1148         return OPJ_TRUE;
1149 }
1150
1151 opj_bool opj_t2_skip_packet_data(   opj_t2_t* p_t2,
1152                                     opj_tcd_tile_t *p_tile,
1153                                     opj_pi_iterator_t *p_pi,
1154                                     OPJ_UINT32 * p_data_read,
1155                                     OPJ_UINT32 p_max_length,
1156                                     opj_packet_info_t *pack_info)
1157 {
1158         OPJ_UINT32 bandno, cblkno;
1159         OPJ_UINT32 l_nb_code_blocks;
1160         opj_tcd_band_t *l_band = 00;
1161         opj_tcd_cblk_dec_t* l_cblk = 00;
1162         opj_tcd_resolution_t* l_res = &p_tile->comps[p_pi->compno].resolutions[p_pi->resno];
1163
1164         OPJ_ARG_NOT_USED(p_t2);
1165         OPJ_ARG_NOT_USED(pack_info);
1166
1167         *p_data_read = 0;
1168         l_band = l_res->bands;
1169
1170         for (bandno = 0; bandno < l_res->numbands; ++bandno) {
1171                 opj_tcd_precinct_t *l_prc = &l_band->precincts[p_pi->precno];
1172
1173                 if ((l_band->x1-l_band->x0 == 0)||(l_band->y1-l_band->y0 == 0)) {
1174                         ++l_band;
1175                         continue;
1176                 }
1177
1178                 l_nb_code_blocks = l_prc->cw * l_prc->ch;
1179                 l_cblk = l_prc->cblks.dec;
1180
1181                 for (cblkno = 0; cblkno < l_nb_code_blocks; ++cblkno) {
1182                         opj_tcd_seg_t *l_seg = 00;
1183
1184                         if (!l_cblk->numnewpasses) {
1185                                 /* nothing to do */
1186                                 ++l_cblk;
1187                                 continue;
1188                         }
1189
1190                         if (!l_cblk->numsegs) {
1191                                 l_seg = l_cblk->segs;
1192                                 ++l_cblk->numsegs;
1193                                 l_cblk->len = 0;
1194                         }
1195                         else {
1196                                 l_seg = &l_cblk->segs[l_cblk->numsegs - 1];
1197
1198                                 if (l_seg->numpasses == l_seg->maxpasses) {
1199                                         ++l_seg;
1200                                         ++l_cblk->numsegs;
1201                                 }
1202                         }
1203
1204                         do {
1205                                 if (* p_data_read + l_seg->newlen > p_max_length) {
1206                                         return OPJ_FALSE;
1207                                 }
1208
1209 #ifdef USE_JPWL
1210                         /* we need here a j2k handle to verify if making a check to
1211                         the validity of cblocks parameters is selected from user (-W) */
1212
1213                                 /* let's check that we are not exceeding */
1214                                 if ((l_cblk->len + l_seg->newlen) > 8192) {
1215                                         opj_event_msg(p_t2->cinfo, EVT_WARNING,
1216                                                 "JPWL: segment too long (%d) for codeblock %d (p=%d, b=%d, r=%d, c=%d)\n",
1217                                                 l_seg->newlen, cblkno, p_pi->precno, bandno, p_pi->resno, p_pi->compno);
1218                                         if (!JPWL_ASSUME) {
1219                                                 opj_event_msg(p_t2->cinfo, EVT_ERROR, "JPWL: giving up\n");
1220                                                 return -999;
1221                                         }
1222                                         l_seg->newlen = 8192 - l_cblk->len;
1223                                         opj_event_msg(p_t2->cinfo, EVT_WARNING, "      - truncating segment to %d\n", l_seg->newlen);
1224                                         break;
1225                                 };
1226
1227 #endif /* USE_JPWL */
1228                                 *(p_data_read) += l_seg->newlen;
1229
1230                                 l_seg->numpasses += l_seg->numnewpasses;
1231                                 l_cblk->numnewpasses -= l_seg->numnewpasses;
1232                                 if (l_cblk->numnewpasses > 0)
1233                                 {
1234                                         ++l_seg;
1235                                         ++l_cblk->numsegs;
1236                                 }
1237                         } while (l_cblk->numnewpasses > 0);
1238
1239                         ++l_cblk;
1240                 }
1241
1242                 ++l_band;
1243         }
1244
1245         return OPJ_TRUE;
1246 }
1247
1248
1249 opj_bool opj_t2_init_seg(   opj_tcd_cblk_dec_t* cblk,
1250                             OPJ_UINT32 index, 
1251                             OPJ_UINT32 cblksty, 
1252                             OPJ_UINT32 first)
1253 {
1254         opj_tcd_seg_t* seg = 00;
1255         OPJ_UINT32 l_nb_segs = index + 1;
1256
1257         if (l_nb_segs > cblk->m_current_max_segs) {
1258                 opj_tcd_seg_t* new_segs;
1259                 cblk->m_current_max_segs += OPJ_J2K_DEFAULT_NB_SEGS;
1260
1261                 new_segs = (opj_tcd_seg_t*) opj_realloc(cblk->segs, cblk->m_current_max_segs * sizeof(opj_tcd_seg_t));
1262                 if(! new_segs) {
1263                         opj_free(cblk->segs);
1264                         cblk->segs = NULL;
1265                         cblk->m_current_max_segs = 0;
1266                         /* opj_event_msg(p_manager, EVT_ERROR, "Not enough memory to initialize segment %d\n", l_nb_segs); */
1267                         return OPJ_FALSE;
1268                 }
1269                 cblk->segs = new_segs;
1270         }
1271
1272         seg = &cblk->segs[index];
1273         memset(seg,0,sizeof(opj_tcd_seg_t));
1274
1275         if (cblksty & J2K_CCP_CBLKSTY_TERMALL) {
1276                 seg->maxpasses = 1;
1277         }
1278         else if (cblksty & J2K_CCP_CBLKSTY_LAZY) {
1279                 if (first) {
1280                         seg->maxpasses = 10;
1281                 } else {
1282                         seg->maxpasses = (((seg - 1)->maxpasses == 1) || ((seg - 1)->maxpasses == 10)) ? 2 : 1;
1283                 }
1284         } else {
1285                 seg->maxpasses = 109;
1286         }
1287
1288         return OPJ_TRUE;
1289 }