[trunk] Remove a simple warning about a cast
[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                 c[4] = (tile->packno % 65536) / 256;
551                 c[5] = (tile->packno % 65536) % 256;
552                 c += 6;
553                 length -= 6;
554         }
555         /* </SOP> */
556
557         if (!layno) {
558                 band = res->bands;
559
560                 for(bandno = 0; bandno < res->numbands; ++bandno) {
561                         opj_tcd_precinct_t *prc = &band->precincts[precno];
562
563                         opj_tgt_reset(prc->incltree);
564                         opj_tgt_reset(prc->imsbtree);
565
566                         l_nb_blocks = prc->cw * prc->ch;
567                         for     (cblkno = 0; cblkno < l_nb_blocks; ++cblkno) {
568                                 cblk = &prc->cblks.enc[cblkno];
569
570                                 cblk->numpasses = 0;
571                                 opj_tgt_setvalue(prc->imsbtree, cblkno, band->numbps - cblk->numbps);
572                         }
573                         ++band;
574                 }
575         }
576
577         bio = opj_bio_create();
578         opj_bio_init_enc(bio, c, length);
579         opj_bio_write(bio, 1, 1);           /* Empty header bit */
580
581         /* Writing Packet header */
582         band = res->bands;
583         for (bandno = 0; bandno < res->numbands; ++bandno)      {
584                 opj_tcd_precinct_t *prc = &band->precincts[precno];
585
586                 l_nb_blocks = prc->cw * prc->ch;
587                 cblk = prc->cblks.enc;
588
589                 for (cblkno = 0; cblkno < l_nb_blocks; ++cblkno) {
590                         opj_tcd_layer_t *layer = &cblk->layers[layno];
591
592                         if (!cblk->numpasses && layer->numpasses) {
593                                 opj_tgt_setvalue(prc->incltree, cblkno, layno);
594                         }
595
596                         ++cblk;
597                 }
598
599                 cblk = prc->cblks.enc;
600                 for (cblkno = 0; cblkno < l_nb_blocks; cblkno++) {
601                         opj_tcd_layer_t *layer = &cblk->layers[layno];
602                         OPJ_UINT32 increment = 0;
603                         OPJ_UINT32 nump = 0;
604                         OPJ_UINT32 len = 0, passno;
605                         OPJ_UINT32 l_nb_passes;
606
607                         /* cblk inclusion bits */
608                         if (!cblk->numpasses) {
609                                 opj_tgt_encode(bio, prc->incltree, cblkno, layno + 1);
610                         } else {
611                                 opj_bio_write(bio, layer->numpasses != 0, 1);
612                         }
613
614                         /* if cblk not included, go to the next cblk  */
615                         if (!layer->numpasses) {
616                                 ++cblk;
617                                 continue;
618                         }
619
620                         /* if first instance of cblk --> zero bit-planes information */
621                         if (!cblk->numpasses) {
622                                 cblk->numlenbits = 3;
623                                 opj_tgt_encode(bio, prc->imsbtree, cblkno, 999);
624                         }
625
626                         /* number of coding passes included */
627                         opj_t2_putnumpasses(bio, layer->numpasses);
628                         l_nb_passes = cblk->numpasses + layer->numpasses;
629                         pass = cblk->passes +  cblk->numpasses;
630
631                         /* computation of the increase of the length indicator and insertion in the header     */
632                         for (passno = cblk->numpasses; passno < l_nb_passes; ++passno) {
633                                 ++nump;
634                                 len += pass->len;
635
636                                 if (pass->term || passno == (cblk->numpasses + layer->numpasses) - 1) {
637                                         increment = opj_int_max(increment, opj_int_floorlog2(len) + 1 - (cblk->numlenbits + opj_int_floorlog2(nump)));
638                                         len = 0;
639                                         nump = 0;
640                                 }
641
642                                 ++pass;
643                         }
644                         opj_t2_putcommacode(bio, increment);
645
646                         /* computation of the new Length indicator */
647                         cblk->numlenbits += increment;
648
649                         pass = cblk->passes +  cblk->numpasses;
650                         /* insertion of the codeword segment length */
651                         for (passno = cblk->numpasses; passno < l_nb_passes; ++passno) {
652                                 nump++;
653                                 len += pass->len;
654
655                                 if (pass->term || passno == (cblk->numpasses + layer->numpasses) - 1) {
656                                         opj_bio_write(bio, len, cblk->numlenbits + opj_int_floorlog2(nump));
657                                         len = 0;
658                                         nump = 0;
659                                 }
660                                 ++pass;
661                         }
662
663                         ++cblk;
664                 }
665
666                 ++band;
667         }
668
669         if (!opj_bio_flush(bio)) {
670                 opj_bio_destroy(bio);
671                 return OPJ_FALSE;               /* modified to eliminate longjmp !! */
672         }
673
674         l_nb_bytes = opj_bio_numbytes(bio);
675         c += l_nb_bytes;
676         length -= l_nb_bytes;
677
678         opj_bio_destroy(bio);
679
680         /* <EPH 0xff92> */
681         if (tcp->csty & J2K_CP_CSTY_EPH) {
682                 c[0] = 255;
683                 c[1] = 146;
684                 c += 2;
685                 length -= 2;
686         }
687         /* </EPH> */
688
689         /* << INDEX */
690         /* End of packet header position. Currently only represents the distance to start of packet
691            Will be updated later by incrementing with packet start value*/
692         if(cstr_info && cstr_info->index_write) {
693                 opj_packet_info_t *info_PK = &cstr_info->tile[tileno].packet[cstr_info->packno];
694                 info_PK->end_ph_pos = (OPJ_INT32)(c - dest);
695         }
696         /* INDEX >> */
697
698         /* Writing the packet body */
699         band = res->bands;
700         for (bandno = 0; bandno < res->numbands; bandno++) {
701                 opj_tcd_precinct_t *prc = &band->precincts[precno];
702
703                 l_nb_blocks = prc->cw * prc->ch;
704                 cblk = prc->cblks.enc;
705
706                 for (cblkno = 0; cblkno < l_nb_blocks; ++cblkno) {
707                         opj_tcd_layer_t *layer = &cblk->layers[layno];
708
709                         if (!layer->numpasses) {
710                                 ++cblk;
711                                 continue;
712                         }
713
714                         if (layer->len > length) {
715                                 return OPJ_FALSE;
716                         }
717
718                         memcpy(c, layer->data, layer->len);
719                         cblk->numpasses += layer->numpasses;
720                         c += layer->len;
721                         length -= layer->len;
722
723                         /* << INDEX */
724                         if(cstr_info && cstr_info->index_write) {
725                                 opj_packet_info_t *info_PK = &cstr_info->tile[tileno].packet[cstr_info->packno];
726                                 info_PK->disto += layer->disto;
727                                 if (cstr_info->D_max < info_PK->disto) {
728                                         cstr_info->D_max = info_PK->disto;
729                                 }
730                         }
731
732                         ++cblk;
733                         /* INDEX >> */
734                 }
735                 ++band;
736         }
737
738         * p_data_written += (c - dest);
739
740         return OPJ_TRUE;
741 }
742
743 static OPJ_BOOL opj_t2_skip_packet( opj_t2_t* p_t2,
744                                     opj_tcd_tile_t *p_tile,
745                                     opj_tcp_t *p_tcp,
746                                     opj_pi_iterator_t *p_pi,
747                                     OPJ_BYTE *p_src,
748                                     OPJ_UINT32 * p_data_read,
749                                     OPJ_UINT32 p_max_length,
750                                     opj_packet_info_t *p_pack_info)
751 {
752         OPJ_BOOL l_read_data;
753         OPJ_UINT32 l_nb_bytes_read = 0;
754         OPJ_UINT32 l_nb_total_bytes_read = 0;
755
756         *p_data_read = 0;
757
758         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)) {
759                 return OPJ_FALSE;
760         }
761
762         p_src += l_nb_bytes_read;
763         l_nb_total_bytes_read += l_nb_bytes_read;
764         p_max_length -= l_nb_bytes_read;
765
766         /* we should read data for the packet */
767         if (l_read_data) {
768                 l_nb_bytes_read = 0;
769
770                 if (! opj_t2_skip_packet_data(p_t2,p_tile,p_pi,&l_nb_bytes_read,p_max_length,p_pack_info)) {
771                         return OPJ_FALSE;
772                 }
773
774                 l_nb_total_bytes_read += l_nb_bytes_read;
775         }
776         *p_data_read = l_nb_total_bytes_read;
777
778         return OPJ_TRUE;
779 }
780
781
782
783 OPJ_BOOL opj_t2_read_packet_header( opj_t2_t* p_t2,
784                                     opj_tcd_tile_t *p_tile,
785                                     opj_tcp_t *p_tcp,
786                                     opj_pi_iterator_t *p_pi,
787                                     OPJ_BOOL * p_is_data_present,
788                                     OPJ_BYTE *p_src_data,
789                                     OPJ_UINT32 * p_data_read,
790                                     OPJ_UINT32 p_max_length,
791                                     opj_packet_info_t *p_pack_info)
792
793 {
794         /* loop */
795         OPJ_UINT32 bandno, cblkno;
796         OPJ_UINT32 l_nb_code_blocks;
797         OPJ_UINT32 l_remaining_length;
798         OPJ_UINT32 l_header_length;
799         OPJ_UINT32 * l_modified_length_ptr = 00;
800         OPJ_BYTE *l_current_data = p_src_data;
801         opj_cp_t *l_cp = p_t2->cp;
802         opj_bio_t *l_bio = 00;  /* BIO component */
803         opj_tcd_band_t *l_band = 00;
804         opj_tcd_cblk_dec_t* l_cblk = 00;
805         opj_tcd_resolution_t* l_res = &p_tile->comps[p_pi->compno].resolutions[p_pi->resno];
806
807         OPJ_BYTE *l_header_data = 00;
808         OPJ_BYTE **l_header_data_start = 00;
809
810         OPJ_UINT32 l_present;
811
812         if (p_pi->layno == 0) {
813                 l_band = l_res->bands;
814
815                 /* reset tagtrees */
816                 for (bandno = 0; bandno < l_res->numbands; ++bandno) {
817                         opj_tcd_precinct_t *l_prc = &l_band->precincts[p_pi->precno];
818
819                         if ( ! ((l_band->x1-l_band->x0 == 0)||(l_band->y1-l_band->y0 == 0)) ) {
820                                 opj_tgt_reset(l_prc->incltree);
821                                 opj_tgt_reset(l_prc->imsbtree);
822                                 l_cblk = l_prc->cblks.dec;
823
824                                 l_nb_code_blocks = l_prc->cw * l_prc->ch;
825                                 for (cblkno = 0; cblkno < l_nb_code_blocks; ++cblkno) {
826                                         l_cblk->numsegs = 0;
827                                         l_cblk->real_num_segs = 0;
828                                         ++l_cblk;
829                                 }
830                         }
831
832                         ++l_band;
833                 }
834         }
835
836         /* SOP markers */
837
838         if (p_tcp->csty & J2K_CP_CSTY_SOP) {
839                 if ((*l_current_data) != 0xff || (*(l_current_data + 1) != 0x91)) {
840                         /* TODO opj_event_msg(t2->cinfo->event_mgr, EVT_WARNING, "Expected SOP marker\n"); */
841                 } else {
842                         l_current_data += 6;
843                 }
844
845                 /** TODO : check the Nsop value */
846         }
847
848         /*
849         When the marker PPT/PPM is used the packet header are store in PPT/PPM marker
850         This part deal with this caracteristic
851         step 1: Read packet header in the saved structure
852         step 2: Return to codestream for decoding
853         */
854
855         l_bio = opj_bio_create();
856         if (! l_bio) {
857                 return OPJ_FALSE;
858         }
859
860         if (l_cp->ppm == 1) { /* PPM */
861                 l_header_data_start = &l_cp->ppm_data;
862                 l_header_data = *l_header_data_start;
863                 l_modified_length_ptr = &(l_cp->ppm_len);
864
865         }
866         else if (p_tcp->ppt == 1) { /* PPT */
867                 l_header_data_start = &(p_tcp->ppt_data);
868                 l_header_data = *l_header_data_start;
869                 l_modified_length_ptr = &(p_tcp->ppt_len);
870         }
871         else {  /* Normal Case */
872                 l_header_data_start = &(l_current_data);
873                 l_header_data = *l_header_data_start;
874                 l_remaining_length = p_src_data+p_max_length-l_header_data;
875                 l_modified_length_ptr = &(l_remaining_length);
876         }
877
878         opj_bio_init_dec(l_bio, l_header_data,*l_modified_length_ptr);
879
880         l_present = opj_bio_read(l_bio, 1);
881         if (!l_present) {
882             /* TODO MSD: no test to control the output of this function*/
883                 opj_bio_inalign(l_bio);
884                 l_header_data += opj_bio_numbytes(l_bio);
885                 opj_bio_destroy(l_bio);
886
887                 /* EPH markers */
888                 if (p_tcp->csty & J2K_CP_CSTY_EPH) {
889                         if (p_max_length < 2) {
890                                 fprintf(stderr, "Not enough space for expected EPH marker\n");
891                         } else if ((*l_header_data) != 0xff || (*(l_header_data + 1) != 0x92)) {
892                                 printf("Error : expected EPH marker\n");
893                         } else {
894                                 l_header_data += 2;
895                         }
896                 }
897
898                 l_header_length = (l_header_data - *l_header_data_start);
899                 *l_modified_length_ptr -= l_header_length;
900                 *l_header_data_start += l_header_length;
901
902                 /* << INDEX */
903                 /* End of packet header position. Currently only represents the distance to start of packet
904                    Will be updated later by incrementing with packet start value */
905                 if (p_pack_info) {
906                         p_pack_info->end_ph_pos = (OPJ_INT32)(l_current_data - p_src_data);
907                 }
908                 /* INDEX >> */
909
910                 * p_is_data_present = OPJ_FALSE;
911                 *p_data_read = l_current_data - p_src_data;
912                 return OPJ_TRUE;
913         }
914
915         l_band = l_res->bands;
916         for (bandno = 0; bandno < l_res->numbands; ++bandno) {
917                 opj_tcd_precinct_t *l_prc = &(l_band->precincts[p_pi->precno]);
918
919                 if ((l_band->x1-l_band->x0 == 0)||(l_band->y1-l_band->y0 == 0)) {
920                         ++l_band;
921                         continue;
922                 }
923
924                 l_nb_code_blocks = l_prc->cw * l_prc->ch;
925                 l_cblk = l_prc->cblks.dec;
926                 for (cblkno = 0; cblkno < l_nb_code_blocks; cblkno++) {
927                         OPJ_UINT32 l_included,l_increment, l_segno;
928                         OPJ_INT32 n;
929
930                         /* if cblk not yet included before --> inclusion tagtree */
931                         if (!l_cblk->numsegs) {
932                                 l_included = opj_tgt_decode(l_bio, l_prc->incltree, cblkno, p_pi->layno + 1);
933                                 /* else one bit */
934                         }
935                         else {
936                                 l_included = opj_bio_read(l_bio, 1);
937                         }
938
939                         /* if cblk not included */
940                         if (!l_included) {
941                                 l_cblk->numnewpasses = 0;
942                                 ++l_cblk;
943                                 continue;
944                         }
945
946                         /* if cblk not yet included --> zero-bitplane tagtree */
947                         if (!l_cblk->numsegs) {
948                                 OPJ_UINT32 i = 0;
949
950                                 while (!opj_tgt_decode(l_bio, l_prc->imsbtree, cblkno, i)) {
951                                         ++i;
952                                 }
953
954                                 l_cblk->numbps = l_band->numbps + 1 - i;
955                                 l_cblk->numlenbits = 3;
956                         }
957
958                         /* number of coding passes */
959                         l_cblk->numnewpasses = opj_t2_getnumpasses(l_bio);
960                         l_increment = opj_t2_getcommacode(l_bio);
961
962                         /* length indicator increment */
963                         l_cblk->numlenbits += l_increment;
964                         l_segno = 0;
965
966                         if (!l_cblk->numsegs) {
967                                 if (! opj_t2_init_seg(l_cblk, l_segno, p_tcp->tccps[p_pi->compno].cblksty, 1)) {
968                                         opj_bio_destroy(l_bio);
969                                         return OPJ_FALSE;
970                                 }
971                         }
972                         else {
973                                 l_segno = l_cblk->numsegs - 1;
974                                 if (l_cblk->segs[l_segno].numpasses == l_cblk->segs[l_segno].maxpasses) {
975                                         ++l_segno;
976                                         if (! opj_t2_init_seg(l_cblk, l_segno, p_tcp->tccps[p_pi->compno].cblksty, 0)) {
977                                                 opj_bio_destroy(l_bio);
978                                                 return OPJ_FALSE;
979                                         }
980                                 }
981                         }
982                         n = l_cblk->numnewpasses;
983
984                         do {
985                                 l_cblk->segs[l_segno].numnewpasses = opj_int_min(l_cblk->segs[l_segno].maxpasses - l_cblk->segs[l_segno].numpasses, n);
986                                 l_cblk->segs[l_segno].newlen = opj_bio_read(l_bio, l_cblk->numlenbits + opj_uint_floorlog2(l_cblk->segs[l_segno].numnewpasses));
987
988                                 n -= l_cblk->segs[l_segno].numnewpasses;
989                                 if (n > 0) {
990                                         ++l_segno;
991
992                                         if (! opj_t2_init_seg(l_cblk, l_segno, p_tcp->tccps[p_pi->compno].cblksty, 0)) {
993                                                 opj_bio_destroy(l_bio);
994                                                 return OPJ_FALSE;
995                                         }
996                                 }
997                         } while (n > 0);
998
999                         ++l_cblk;
1000                 }
1001
1002                 ++l_band;
1003         }
1004
1005         if (!opj_bio_inalign(l_bio)) {
1006                 opj_bio_destroy(l_bio);
1007                 return OPJ_FALSE;
1008         }
1009
1010         l_header_data += opj_bio_numbytes(l_bio);
1011         opj_bio_destroy(l_bio);
1012
1013         /* EPH markers */
1014         if (p_tcp->csty & J2K_CP_CSTY_EPH) {
1015                 if (p_max_length < 2) {
1016                         fprintf(stderr, "Not enough space for expected EPH marker\n");
1017                 } else if ((*l_header_data) != 0xff || (*(l_header_data + 1) != 0x92)) {
1018                         /* TODO opj_event_msg(t2->cinfo->event_mgr, EVT_ERROR, "Expected EPH marker\n"); */
1019                 } else {
1020                         l_header_data += 2;
1021                 }
1022         }
1023
1024         l_header_length = (l_header_data - *l_header_data_start);
1025         *l_modified_length_ptr -= l_header_length;
1026         *l_header_data_start += l_header_length;
1027
1028         /* << INDEX */
1029         /* End of packet header position. Currently only represents the distance to start of packet
1030          Will be updated later by incrementing with packet start value */
1031         if (p_pack_info) {
1032                 p_pack_info->end_ph_pos = (OPJ_INT32)(l_current_data - p_src_data);
1033         }
1034         /* INDEX >> */
1035
1036         *p_is_data_present = OPJ_TRUE;
1037         *p_data_read = l_current_data - p_src_data;
1038
1039         return OPJ_TRUE;
1040 }
1041
1042 OPJ_BOOL opj_t2_read_packet_data(   opj_t2_t* p_t2,
1043                                     opj_tcd_tile_t *p_tile,
1044                                     opj_pi_iterator_t *p_pi,
1045                                     OPJ_BYTE *p_src_data,
1046                                     OPJ_UINT32 * p_data_read,
1047                                     OPJ_UINT32 p_max_length,
1048                                     opj_packet_info_t *pack_info)
1049 {
1050         OPJ_UINT32 bandno, cblkno;
1051         OPJ_UINT32 l_nb_code_blocks;
1052         OPJ_BYTE *l_current_data = p_src_data;
1053         opj_tcd_band_t *l_band = 00;
1054         opj_tcd_cblk_dec_t* l_cblk = 00;
1055         opj_tcd_resolution_t* l_res = &p_tile->comps[p_pi->compno].resolutions[p_pi->resno];
1056
1057         OPJ_ARG_NOT_USED(p_t2);
1058         OPJ_ARG_NOT_USED(pack_info);
1059
1060         l_band = l_res->bands;
1061         for (bandno = 0; bandno < l_res->numbands; ++bandno) {
1062                 opj_tcd_precinct_t *l_prc = &l_band->precincts[p_pi->precno];
1063
1064                 if ((l_band->x1-l_band->x0 == 0)||(l_band->y1-l_band->y0 == 0)) {
1065                         ++l_band;
1066                         continue;
1067                 }
1068
1069                 l_nb_code_blocks = l_prc->cw * l_prc->ch;
1070                 l_cblk = l_prc->cblks.dec;
1071
1072                 for (cblkno = 0; cblkno < l_nb_code_blocks; ++cblkno) {
1073                         opj_tcd_seg_t *l_seg = 00;
1074
1075                         if (!l_cblk->numnewpasses) {
1076                                 /* nothing to do */
1077                                 ++l_cblk;
1078                                 continue;
1079                         }
1080
1081                         if (!l_cblk->numsegs) {
1082                                 l_seg = l_cblk->segs;
1083                                 ++l_cblk->numsegs;
1084                                 l_cblk->data_current_size = 0;
1085                         }
1086                         else {
1087                                 l_seg = &l_cblk->segs[l_cblk->numsegs - 1];
1088
1089                                 if (l_seg->numpasses == l_seg->maxpasses) {
1090                                         ++l_seg;
1091                                         ++l_cblk->numsegs;
1092                                 }
1093                         }
1094
1095                         do {
1096                                 if (l_current_data + l_seg->newlen > p_src_data + p_max_length) {
1097                                         return OPJ_FALSE;
1098                                 }
1099
1100 #ifdef USE_JPWL
1101                         /* we need here a j2k handle to verify if making a check to
1102                         the validity of cblocks parameters is selected from user (-W) */
1103
1104                                 /* let's check that we are not exceeding */
1105                                 if ((l_cblk->len + l_seg->newlen) > 8192) {
1106                                         opj_event_msg(p_t2->cinfo, EVT_WARNING,
1107                                                 "JPWL: segment too long (%d) for codeblock %d (p=%d, b=%d, r=%d, c=%d)\n",
1108                                                 l_seg->newlen, cblkno, p_pi->precno, bandno, p_pi->resno, p_pi->compno);
1109                                         if (!JPWL_ASSUME) {
1110                                                 opj_event_msg(p_t2->cinfo, EVT_ERROR, "JPWL: giving up\n");
1111                                                 return OPJ_FALSE;
1112                                         }
1113                                         l_seg->newlen = 8192 - l_cblk->len;
1114                                         opj_event_msg(p_t2->cinfo, EVT_WARNING, "      - truncating segment to %d\n", l_seg->newlen);
1115                                         break;
1116                                 };
1117
1118 #endif /* USE_JPWL */
1119                                 /* Check if the cblk->data have allocated enough memory */
1120                                 if ((l_cblk->data_current_size + l_seg->newlen) > l_cblk->data_max_size) {
1121                                     OPJ_BYTE* new_cblk_data = (OPJ_BYTE*) opj_realloc(l_cblk->data, l_cblk->data_current_size + l_seg->newlen);
1122                                     if(! new_cblk_data) {
1123                                         opj_free(l_cblk->data);
1124                                         l_cblk->data_max_size = 0;
1125                                         /* opj_event_msg(p_manager, EVT_ERROR, "Not enough memory to realloc code block cata!\n"); */
1126                                         return OPJ_FALSE;
1127                                     }
1128                                     l_cblk->data_max_size = l_cblk->data_current_size + l_seg->newlen;
1129                                     l_cblk->data = new_cblk_data;
1130                                 }
1131                                
1132                                 memcpy(l_cblk->data + l_cblk->data_current_size, l_current_data, l_seg->newlen);
1133
1134                                 if (l_seg->numpasses == 0) {
1135                                         l_seg->data = &l_cblk->data;
1136                                         l_seg->dataindex = l_cblk->data_current_size;
1137                                 }
1138
1139                                 l_current_data += l_seg->newlen;
1140                                 l_seg->numpasses += l_seg->numnewpasses;
1141                                 l_cblk->numnewpasses -= l_seg->numnewpasses;
1142
1143                                 l_seg->real_num_passes = l_seg->numpasses;
1144                                 l_cblk->data_current_size += l_seg->newlen;
1145                                 l_seg->len += l_seg->newlen;
1146
1147                                 if (l_cblk->numnewpasses > 0) {
1148                                         ++l_seg;
1149                                         ++l_cblk->numsegs;
1150                                 }
1151                         } while (l_cblk->numnewpasses > 0);
1152
1153                         l_cblk->real_num_segs = l_cblk->numsegs;
1154                         ++l_cblk;
1155                 } /* next code_block */
1156
1157                 ++l_band;
1158         }
1159
1160         *(p_data_read) = l_current_data - p_src_data;
1161
1162         return OPJ_TRUE;
1163 }
1164
1165 OPJ_BOOL opj_t2_skip_packet_data(   opj_t2_t* p_t2,
1166                                     opj_tcd_tile_t *p_tile,
1167                                     opj_pi_iterator_t *p_pi,
1168                                     OPJ_UINT32 * p_data_read,
1169                                     OPJ_UINT32 p_max_length,
1170                                     opj_packet_info_t *pack_info)
1171 {
1172         OPJ_UINT32 bandno, cblkno;
1173         OPJ_UINT32 l_nb_code_blocks;
1174         opj_tcd_band_t *l_band = 00;
1175         opj_tcd_cblk_dec_t* l_cblk = 00;
1176         opj_tcd_resolution_t* l_res = &p_tile->comps[p_pi->compno].resolutions[p_pi->resno];
1177
1178         OPJ_ARG_NOT_USED(p_t2);
1179         OPJ_ARG_NOT_USED(pack_info);
1180
1181         *p_data_read = 0;
1182         l_band = l_res->bands;
1183
1184         for (bandno = 0; bandno < l_res->numbands; ++bandno) {
1185                 opj_tcd_precinct_t *l_prc = &l_band->precincts[p_pi->precno];
1186
1187                 if ((l_band->x1-l_band->x0 == 0)||(l_band->y1-l_band->y0 == 0)) {
1188                         ++l_band;
1189                         continue;
1190                 }
1191
1192                 l_nb_code_blocks = l_prc->cw * l_prc->ch;
1193                 l_cblk = l_prc->cblks.dec;
1194
1195                 for (cblkno = 0; cblkno < l_nb_code_blocks; ++cblkno) {
1196                         opj_tcd_seg_t *l_seg = 00;
1197
1198                         if (!l_cblk->numnewpasses) {
1199                                 /* nothing to do */
1200                                 ++l_cblk;
1201                                 continue;
1202                         }
1203
1204                         if (!l_cblk->numsegs) {
1205                                 l_seg = l_cblk->segs;
1206                                 ++l_cblk->numsegs;
1207                                 l_cblk->data_current_size = 0;
1208                         }
1209                         else {
1210                                 l_seg = &l_cblk->segs[l_cblk->numsegs - 1];
1211
1212                                 if (l_seg->numpasses == l_seg->maxpasses) {
1213                                         ++l_seg;
1214                                         ++l_cblk->numsegs;
1215                                 }
1216                         }
1217
1218                         do {
1219                                 if (* p_data_read + l_seg->newlen > p_max_length) {
1220                                         return OPJ_FALSE;
1221                                 }
1222
1223 #ifdef USE_JPWL
1224                         /* we need here a j2k handle to verify if making a check to
1225                         the validity of cblocks parameters is selected from user (-W) */
1226
1227                                 /* let's check that we are not exceeding */
1228                                 if ((l_cblk->len + l_seg->newlen) > 8192) {
1229                                         opj_event_msg(p_t2->cinfo, EVT_WARNING,
1230                                                 "JPWL: segment too long (%d) for codeblock %d (p=%d, b=%d, r=%d, c=%d)\n",
1231                                                 l_seg->newlen, cblkno, p_pi->precno, bandno, p_pi->resno, p_pi->compno);
1232                                         if (!JPWL_ASSUME) {
1233                                                 opj_event_msg(p_t2->cinfo, EVT_ERROR, "JPWL: giving up\n");
1234                                                 return -999;
1235                                         }
1236                                         l_seg->newlen = 8192 - l_cblk->len;
1237                                         opj_event_msg(p_t2->cinfo, EVT_WARNING, "      - truncating segment to %d\n", l_seg->newlen);
1238                                         break;
1239                                 };
1240
1241 #endif /* USE_JPWL */
1242                                 *(p_data_read) += l_seg->newlen;
1243
1244                                 l_seg->numpasses += l_seg->numnewpasses;
1245                                 l_cblk->numnewpasses -= l_seg->numnewpasses;
1246                                 if (l_cblk->numnewpasses > 0)
1247                                 {
1248                                         ++l_seg;
1249                                         ++l_cblk->numsegs;
1250                                 }
1251                         } while (l_cblk->numnewpasses > 0);
1252
1253                         ++l_cblk;
1254                 }
1255
1256                 ++l_band;
1257         }
1258
1259         return OPJ_TRUE;
1260 }
1261
1262
1263 OPJ_BOOL opj_t2_init_seg(   opj_tcd_cblk_dec_t* cblk,
1264                             OPJ_UINT32 index, 
1265                             OPJ_UINT32 cblksty, 
1266                             OPJ_UINT32 first)
1267 {
1268         opj_tcd_seg_t* seg = 00;
1269         OPJ_UINT32 l_nb_segs = index + 1;
1270
1271         if (l_nb_segs > cblk->m_current_max_segs) {
1272                 opj_tcd_seg_t* new_segs;
1273                 cblk->m_current_max_segs += OPJ_J2K_DEFAULT_NB_SEGS;
1274
1275                 new_segs = (opj_tcd_seg_t*) opj_realloc(cblk->segs, cblk->m_current_max_segs * sizeof(opj_tcd_seg_t));
1276                 if(! new_segs) {
1277                         opj_free(cblk->segs);
1278                         cblk->segs = NULL;
1279                         cblk->m_current_max_segs = 0;
1280                         /* opj_event_msg(p_manager, EVT_ERROR, "Not enough memory to initialize segment %d\n", l_nb_segs); */
1281                         return OPJ_FALSE;
1282                 }
1283                 cblk->segs = new_segs;
1284         }
1285
1286         seg = &cblk->segs[index];
1287         memset(seg,0,sizeof(opj_tcd_seg_t));
1288
1289         if (cblksty & J2K_CCP_CBLKSTY_TERMALL) {
1290                 seg->maxpasses = 1;
1291         }
1292         else if (cblksty & J2K_CCP_CBLKSTY_LAZY) {
1293                 if (first) {
1294                         seg->maxpasses = 10;
1295                 } else {
1296                         seg->maxpasses = (((seg - 1)->maxpasses == 1) || ((seg - 1)->maxpasses == 10)) ? 2 : 1;
1297                 }
1298         } else {
1299                 seg->maxpasses = 109;
1300         }
1301
1302         return OPJ_TRUE;
1303 }