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