openjp2 0.3.4

Rust port of Openjpeg.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
use super::bio::*;
use super::event::*;
use super::math::*;
use super::openjpeg::*;
use super::pi::*;
use super::tcd::*;
use super::tgt::*;

use super::malloc::*;

extern "C" {
  fn memset(_: *mut core::ffi::c_void, _: core::ffi::c_int, _: usize) -> *mut core::ffi::c_void;

  fn memcpy(
    _: *mut core::ffi::c_void,
    _: *const core::ffi::c_void,
    _: usize,
  ) -> *mut core::ffi::c_void;
}

#[repr(C)]
#[derive(Copy, Clone)]
pub(crate) struct opj_t2 {
  pub image: *mut opj_image_t,
  pub cp: *mut opj_cp_t,
}
pub(crate) type opj_t2_t = opj_t2;
/*
 * The copyright in this software is being made available under the 2-clauses
 * BSD License, included below. This software may be subject to other third
 * party and contributor rights, including patent rights, and no such rights
 * are granted under this license.
 *
 * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
 * Copyright (c) 2002-2014, Professor Benoit Macq
 * Copyright (c) 2001-2003, David Janssens
 * Copyright (c) 2002-2003, Yannick Verschueren
 * Copyright (c) 2003-2007, Francois-Olivier Devaux
 * Copyright (c) 2003-2014, Antonin Descampe
 * Copyright (c) 2005, Herve Drolon, FreeImage Team
 * Copyright (c) 2008, 2011-2012, Centre National d'Etudes Spatiales (CNES), FR
 * Copyright (c) 2012, CS Systemes d'Information, France
 * Copyright (c) 2017, IntoPIX SA <support@intopix.com>
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
/* * @defgroup T2 T2 - Implementation of a tier-2 coding */
/*@{*/
/* * @name Local static functions */
/*@{*/
/*@}*/
/*@}*/
/* ----------------------------------------------------------------------- */
/* #define RESTART 0x04 */
unsafe fn opj_t2_putcommacode(mut bio: *mut opj_bio_t, mut n: OPJ_INT32) {
  for _ in 0..n {
    opj_bio_putbit(bio, 1);
  }
  opj_bio_putbit(bio, 0);
}
unsafe fn opj_t2_getcommacode(mut bio: *mut opj_bio_t) -> OPJ_UINT32 {
  let mut n = 0 as OPJ_UINT32;
  while opj_bio_read(bio, 1 as OPJ_UINT32) != 0 {
    n += 1;
  }
  n
}
/* *
Variable length code for signalling delta Zil (truncation point)
@param bio  Bit Input/Output component
@param n    delta Zil
*/
unsafe fn opj_t2_putnumpasses(mut bio: *mut opj_bio_t, mut n: OPJ_UINT32) {
  if n == 1u32 {
    opj_bio_putbit(bio, 0);
  } else if n == 2u32 {
    opj_bio_write(bio, 2 as OPJ_UINT32, 2 as OPJ_UINT32);
  } else if n <= 5u32 {
    opj_bio_write(bio, 0xcu32 | n.wrapping_sub(3u32), 4 as OPJ_UINT32);
  } else if n <= 36u32 {
    opj_bio_write(bio, 0x1e0u32 | n.wrapping_sub(6u32), 9 as OPJ_UINT32);
  } else if n <= 164u32 {
    opj_bio_write(bio, 0xff80u32 | n.wrapping_sub(37u32), 16 as OPJ_UINT32);
  };
}
unsafe fn opj_t2_getnumpasses(mut bio: *mut opj_bio_t) -> OPJ_UINT32 {
  let mut n: OPJ_UINT32 = 0;
  if opj_bio_read(bio, 1 as OPJ_UINT32) == 0 {
    return 1 as OPJ_UINT32;
  }
  if opj_bio_read(bio, 1 as OPJ_UINT32) == 0 {
    return 2 as OPJ_UINT32;
  }
  n = opj_bio_read(bio, 2 as OPJ_UINT32);
  if n != 3u32 {
    return (3u32).wrapping_add(n);
  }
  n = opj_bio_read(bio, 5 as OPJ_UINT32);
  if n != 31u32 {
    return (6u32).wrapping_add(n);
  }
  (37u32).wrapping_add(opj_bio_read(bio, 7 as OPJ_UINT32))
}
/* ----------------------------------------------------------------------- */
#[no_mangle]
pub(crate) unsafe fn opj_t2_encode_packets(
  mut p_t2: *mut opj_t2_t,
  mut p_tile_no: OPJ_UINT32,
  mut p_tile: *mut opj_tcd_tile_t,
  mut p_maxlayers: OPJ_UINT32,
  mut p_dest: *mut OPJ_BYTE,
  mut p_data_written: *mut OPJ_UINT32,
  mut p_max_len: OPJ_UINT32,
  mut cstr_info: *mut opj_codestream_info_t,
  mut p_marker_info: *mut opj_tcd_marker_info_t,
  mut p_tp_num: OPJ_UINT32,
  mut p_tp_pos: OPJ_INT32,
  mut p_pino: OPJ_UINT32,
  mut p_t2_mode: J2K_T2_MODE,
  mut p_manager: &mut opj_event_mgr,
) -> OPJ_BOOL {
  let mut l_current_data = p_dest; /* t2_mode == FINAL_PASS  */
  let mut l_nb_bytes = 0 as OPJ_UINT32;
  let mut compno: OPJ_UINT32 = 0;
  let mut poc: OPJ_UINT32 = 0;
  let mut l_pi = std::ptr::null_mut::<opj_pi_iterator_t>();
  let mut l_current_pi = std::ptr::null_mut::<opj_pi_iterator_t>();
  let mut l_image = (*p_t2).image;
  let mut l_cp = (*p_t2).cp;
  let mut l_tcp: *mut opj_tcp_t = &mut *(*l_cp).tcps.offset(p_tile_no as isize) as *mut opj_tcp_t;
  let mut pocno = if (*l_cp).rsiz as core::ffi::c_int == 0x4i32 {
    2i32
  } else {
    1i32
  } as OPJ_UINT32;
  let mut l_max_comp = if (*l_cp).m_specific_param.m_enc.m_max_comp_size > 0u32 {
    (*l_image).numcomps
  } else {
    1u32
  };
  let mut l_nb_pocs = (*l_tcp).numpocs.wrapping_add(1u32);
  l_pi = opj_pi_initialise_encode(l_image, l_cp, p_tile_no, p_t2_mode, p_manager);
  if l_pi.is_null() {
    return 0i32;
  }
  *p_data_written = 0 as OPJ_UINT32;
  if p_t2_mode as core::ffi::c_uint == THRESH_CALC as core::ffi::c_uint {
    /* Calculating threshold */
    l_current_pi = l_pi;
    compno = 0 as OPJ_UINT32;
    while compno < l_max_comp {
      let mut l_comp_len = 0 as OPJ_UINT32;
      l_current_pi = l_pi;
      poc = 0 as OPJ_UINT32;
      while poc < pocno {
        let mut l_tp_num = compno;
        /* TODO MSD : check why this function cannot fail (cf. v1) */
        opj_pi_create_encode(l_pi, l_cp, p_tile_no, poc, l_tp_num, p_tp_pos, p_t2_mode);
        if (*l_current_pi).poc.prg as core::ffi::c_int == OPJ_PROG_UNKNOWN as core::ffi::c_int {
          /* TODO ADE : add an error */
          opj_pi_destroy(l_pi, l_nb_pocs);
          return 0i32;
        }
        while opj_pi_next(l_current_pi) != 0 {
          if (*l_current_pi).layno < p_maxlayers {
            l_nb_bytes = 0 as OPJ_UINT32;
            if opj_t2_encode_packet(
              p_tile_no,
              p_tile,
              l_tcp,
              l_current_pi,
              l_current_data,
              &mut l_nb_bytes,
              p_max_len,
              cstr_info,
              p_t2_mode,
              p_manager,
            ) == 0
            {
              opj_pi_destroy(l_pi, l_nb_pocs);
              return 0i32;
            }
            l_comp_len = (l_comp_len as core::ffi::c_uint).wrapping_add(l_nb_bytes) as OPJ_UINT32;
            l_current_data = l_current_data.offset(l_nb_bytes as isize);
            p_max_len = (p_max_len as core::ffi::c_uint).wrapping_sub(l_nb_bytes) as OPJ_UINT32;
            *p_data_written =
              (*p_data_written as core::ffi::c_uint).wrapping_add(l_nb_bytes) as OPJ_UINT32
          }
        }
        if (*l_cp).m_specific_param.m_enc.m_max_comp_size != 0
          && l_comp_len > (*l_cp).m_specific_param.m_enc.m_max_comp_size
        {
          opj_pi_destroy(l_pi, l_nb_pocs);
          return 0i32;
        }
        l_current_pi = l_current_pi.offset(1);
        poc += 1;
      }
      compno += 1;
    }
  } else {
    opj_pi_create_encode(l_pi, l_cp, p_tile_no, p_pino, p_tp_num, p_tp_pos, p_t2_mode);
    l_current_pi = &mut *l_pi.offset(p_pino as isize) as *mut opj_pi_iterator_t;
    if (*l_current_pi).poc.prg as core::ffi::c_int == OPJ_PROG_UNKNOWN as core::ffi::c_int {
      /* TODO ADE : add an error */
      opj_pi_destroy(l_pi, l_nb_pocs);
      return 0i32;
    }
    if !p_marker_info.is_null() && (*p_marker_info).need_PLT != 0 {
      /* One time use intended */

      assert!((*p_marker_info).packet_count == 0u32);
      assert!((*p_marker_info).p_packet_size.is_null());
      (*p_marker_info).p_packet_size = opj_malloc(
        (opj_get_encoding_packet_count(l_image, l_cp, p_tile_no) as usize)
          .wrapping_mul(core::mem::size_of::<OPJ_UINT32>()),
      ) as *mut OPJ_UINT32;
      if (*p_marker_info).p_packet_size.is_null() {
        opj_pi_destroy(l_pi, l_nb_pocs);
        return 0i32;
      }
    }
    while opj_pi_next(l_current_pi) != 0 {
      if (*l_current_pi).layno < p_maxlayers {
        l_nb_bytes = 0 as OPJ_UINT32;
        if opj_t2_encode_packet(
          p_tile_no,
          p_tile,
          l_tcp,
          l_current_pi,
          l_current_data,
          &mut l_nb_bytes,
          p_max_len,
          cstr_info,
          p_t2_mode,
          p_manager,
        ) == 0
        {
          opj_pi_destroy(l_pi, l_nb_pocs);
          return 0i32;
        }
        l_current_data = l_current_data.offset(l_nb_bytes as isize);
        p_max_len = (p_max_len as core::ffi::c_uint).wrapping_sub(l_nb_bytes) as OPJ_UINT32;
        *p_data_written =
          (*p_data_written as core::ffi::c_uint).wrapping_add(l_nb_bytes) as OPJ_UINT32;
        if !p_marker_info.is_null() && (*p_marker_info).need_PLT != 0 {
          *(*p_marker_info)
            .p_packet_size
            .offset((*p_marker_info).packet_count as isize) = l_nb_bytes;
          (*p_marker_info).packet_count = (*p_marker_info).packet_count.wrapping_add(1)
        }
        /* INDEX >> */
        if !cstr_info.is_null() {
          if (*cstr_info).index_write != 0 {
            let mut info_TL: *mut opj_tile_info_t =
              &mut *(*cstr_info).tile.offset(p_tile_no as isize) as *mut opj_tile_info_t;
            let mut info_PK: *mut opj_packet_info_t =
              &mut *(*info_TL).packet.offset((*cstr_info).packno as isize)
                as *mut opj_packet_info_t;
            if (*cstr_info).packno == 0 {
              (*info_PK).start_pos = ((*info_TL).end_header + 1i32) as OPJ_OFF_T
            } else {
              (*info_PK).start_pos =
                if ((*l_cp).m_specific_param.m_enc.m_tp_on as u32 | (*l_tcp).POC()) != 0
                  && (*info_PK).start_pos != 0
                {
                  (*info_PK).start_pos
                } else {
                  ((*(*info_TL)
                    .packet
                    .offset(((*cstr_info).packno - 1i32) as isize))
                  .end_pos)
                    + 1i64
                }
            }
            (*info_PK).end_pos = (*info_PK).start_pos + l_nb_bytes as i64 - 1;
            (*info_PK).end_ph_pos += (*info_PK).start_pos - 1i64
            /* End of packet header which now only represents the distance
            to start of packet is incremented by value of start of packet*/
          }
          (*cstr_info).packno += 1
        }
        /* << INDEX */
        (*p_tile).packno = (*p_tile).packno.wrapping_add(1)
      }
    }
  }
  opj_pi_destroy(l_pi, l_nb_pocs);
  1i32
}

#[no_mangle]
pub(crate) unsafe fn opj_t2_decode_packets(
  mut tcd: *mut opj_tcd_t,
  mut p_t2: *mut opj_t2_t,
  mut p_tile_no: OPJ_UINT32,
  mut p_tile: *mut opj_tcd_tile_t,
  mut p_src: *mut OPJ_BYTE,
  mut p_data_read: *mut OPJ_UINT32,
  mut p_max_len: OPJ_UINT32,
  mut _p_cstr_index: *mut opj_codestream_index_t,
  mut p_manager: &mut opj_event_mgr,
) -> OPJ_BOOL {
  let mut l_current_data = p_src;
  let mut l_pi = std::ptr::null_mut::<opj_pi_iterator_t>();
  let mut pino: OPJ_UINT32 = 0;
  let mut l_image = (*p_t2).image;
  let mut l_cp = (*p_t2).cp;
  let mut l_tcp: *mut opj_tcp_t =
    &mut *(*(*p_t2).cp).tcps.offset(p_tile_no as isize) as *mut opj_tcp_t;
  let mut l_nb_bytes_read: OPJ_UINT32 = 0;
  let mut l_nb_pocs = (*l_tcp).numpocs.wrapping_add(1u32);
  let mut l_current_pi = std::ptr::null_mut::<opj_pi_iterator_t>();
  let mut l_pack_info = std::ptr::null_mut::<opj_packet_info_t>();
  let mut l_img_comp = std::ptr::null_mut::<opj_image_comp_t>();
  /* create a packet iterator */
  l_pi = opj_pi_create_decode(l_image, l_cp, p_tile_no, p_manager);
  if l_pi.is_null() {
    return 0i32;
  }
  l_current_pi = l_pi;
  pino = 0 as OPJ_UINT32;
  while pino <= (*l_tcp).numpocs {
    /* if the resolution needed is too low, one dim of the tilec could be equal to zero
     * and no packets are used to decode this resolution and
     * l_current_pi->resno is always >= p_tile->comps[l_current_pi->compno].minimum_num_resolutions
     * and no l_img_comp->resno_decoded are computed
     */
    let mut first_pass_failed = std::ptr::null_mut::<OPJ_BOOL>();
    if (*l_current_pi).poc.prg as core::ffi::c_int == OPJ_PROG_UNKNOWN as core::ffi::c_int {
      /* TODO ADE : add an error */
      opj_pi_destroy(l_pi, l_nb_pocs);
      return 0i32;
    }
    first_pass_failed =
      opj_malloc(((*l_image).numcomps as usize).wrapping_mul(core::mem::size_of::<OPJ_BOOL>()))
        as *mut OPJ_BOOL;
    if first_pass_failed.is_null() {
      opj_pi_destroy(l_pi, l_nb_pocs);
      return 0i32;
    }
    memset(
      first_pass_failed as *mut core::ffi::c_void,
      1i32,
      ((*l_image).numcomps as usize).wrapping_mul(core::mem::size_of::<OPJ_BOOL>()),
    );
    while opj_pi_next(l_current_pi) != 0 {
      let mut skip_packet = 0i32;
      log::debug!(
        "packet offset=00000166 prg={} cmptno={:02} rlvlno={:02} prcno={:03} lyrno={:02}",
        (*l_current_pi).poc.prg1 as core::ffi::c_int,
        (*l_current_pi).compno,
        (*l_current_pi).resno,
        (*l_current_pi).precno,
        (*l_current_pi).layno,
      );
      /* INDEX >> */
      /* << INDEX */
      if (*l_current_pi).layno >= (*l_tcp).num_layers_to_decode {
        skip_packet = 1i32
      } else if (*l_current_pi).resno
        >= (*(*p_tile).comps.offset((*l_current_pi).compno as isize)).minimum_num_resolutions
      {
        skip_packet = 1i32
      } else {
        /* If the packet layer is greater or equal than the maximum */
        /* number of layers, skip the packet */
        /* If the packet resolution number is greater than the minimum */
        /* number of resolution allowed, skip the packet */
        /* If no precincts of any band intersects the area of interest, */
        /* skip the packet */
        let mut bandno: OPJ_UINT32 = 0;
        let mut tilec: *mut opj_tcd_tilecomp_t =
          &mut *(*p_tile).comps.offset((*l_current_pi).compno as isize) as *mut opj_tcd_tilecomp_t;
        let mut res: *mut opj_tcd_resolution_t =
          &mut *(*tilec).resolutions.offset((*l_current_pi).resno as isize)
            as *mut opj_tcd_resolution_t;
        skip_packet = 1i32;
        bandno = 0 as OPJ_UINT32;
        while bandno < (*res).numbands {
          let mut band: *mut opj_tcd_band_t =
            &mut *(*res).bands.as_mut_ptr().offset(bandno as isize) as *mut opj_tcd_band_t;
          let mut prec: *mut opj_tcd_precinct_t =
            &mut *(*band).precincts.offset((*l_current_pi).precno as isize)
              as *mut opj_tcd_precinct_t;
          if opj_tcd_is_subband_area_of_interest(
            tcd,
            (*l_current_pi).compno,
            (*l_current_pi).resno,
            (*band).bandno,
            (*prec).x0 as OPJ_UINT32,
            (*prec).y0 as OPJ_UINT32,
            (*prec).x1 as OPJ_UINT32,
            (*prec).y1 as OPJ_UINT32,
          ) != 0
          {
            skip_packet = 0i32;
            break;
          } else {
            bandno += 1;
          }
        }
      }
      if skip_packet == 0 {
        l_nb_bytes_read = 0 as OPJ_UINT32;
        *first_pass_failed.offset((*l_current_pi).compno as isize) = 0i32;
        if opj_t2_decode_packet(
          p_t2,
          p_tile,
          l_tcp,
          l_current_pi,
          l_current_data,
          &mut l_nb_bytes_read,
          p_max_len,
          l_pack_info,
          p_manager,
        ) == 0
        {
          opj_pi_destroy(l_pi, l_nb_pocs);
          opj_free(first_pass_failed as *mut core::ffi::c_void);
          return 0i32;
        }
        l_img_comp =
          &mut *(*l_image).comps.offset((*l_current_pi).compno as isize) as *mut opj_image_comp_t;
        (*l_img_comp).resno_decoded =
          opj_uint_max((*l_current_pi).resno, (*l_img_comp).resno_decoded)
      } else {
        l_nb_bytes_read = 0 as OPJ_UINT32;
        if opj_t2_skip_packet(
          p_t2,
          p_tile,
          l_tcp,
          l_current_pi,
          l_current_data,
          &mut l_nb_bytes_read,
          p_max_len,
          l_pack_info,
          p_manager,
        ) == 0
        {
          opj_pi_destroy(l_pi, l_nb_pocs);
          opj_free(first_pass_failed as *mut core::ffi::c_void);
          return 0i32;
        }
      }
      if *first_pass_failed.offset((*l_current_pi).compno as isize) != 0 {
        l_img_comp =
          &mut *(*l_image).comps.offset((*l_current_pi).compno as isize) as *mut opj_image_comp_t;
        if (*l_img_comp).resno_decoded == 0u32 {
          (*l_img_comp).resno_decoded = (*(*p_tile).comps.offset((*l_current_pi).compno as isize))
            .minimum_num_resolutions
            .wrapping_sub(1u32)
        }
      }
      l_current_data = l_current_data.offset(l_nb_bytes_read as isize);
      p_max_len = (p_max_len as core::ffi::c_uint).wrapping_sub(l_nb_bytes_read) as OPJ_UINT32
    }
    l_current_pi = l_current_pi.offset(1);
    opj_free(first_pass_failed as *mut core::ffi::c_void);
    pino += 1;
  }
  /* INDEX >> */
  /* << INDEX */
  /* don't forget to release pi */
  opj_pi_destroy(l_pi, l_nb_pocs);
  *p_data_read = l_current_data.offset_from(p_src) as OPJ_UINT32;
  1i32
}
/* ----------------------------------------------------------------------- */
/* *
 * Creates a Tier 2 handle
 *
 * @param       p_image         Source or destination image
 * @param       p_cp            Image coding parameters.
 * @return              a new T2 handle if successful, NULL otherwise.
*/
#[no_mangle]
pub(crate) unsafe fn opj_t2_create(
  mut p_image: *mut opj_image_t,
  mut p_cp: *mut opj_cp_t,
) -> *mut opj_t2_t {
  /* create the t2 structure */
  let mut l_t2 = opj_calloc(1i32 as size_t, core::mem::size_of::<opj_t2_t>()) as *mut opj_t2_t;
  if l_t2.is_null() {
    return std::ptr::null_mut::<opj_t2_t>();
  }
  (*l_t2).image = p_image;
  (*l_t2).cp = p_cp;
  l_t2
}
#[no_mangle]
pub(crate) unsafe fn opj_t2_destroy(mut t2: *mut opj_t2_t) {
  if !t2.is_null() {
    opj_free(t2 as *mut core::ffi::c_void);
  };
}
/* *
Decode a packet of a tile from a source buffer
@param t2 T2 handle
@param tile Tile for which to write the packets
@param tcp Tile coding parameters
@param pi Packet identity
@param src Source buffer
@param data_read   FIXME DOC
@param max_length  FIXME DOC
@param pack_info Packet information
@param p_manager the user event manager

@return  FIXME DOC
*/
unsafe fn opj_t2_decode_packet(
  mut p_t2: *mut opj_t2_t,
  mut p_tile: *mut opj_tcd_tile_t,
  mut p_tcp: *mut opj_tcp_t,
  mut p_pi: *mut opj_pi_iterator_t,
  mut p_src: *mut OPJ_BYTE,
  mut p_data_read: *mut OPJ_UINT32,
  mut p_max_length: OPJ_UINT32,
  mut p_pack_info: *mut opj_packet_info_t,
  mut p_manager: &mut opj_event_mgr,
) -> OPJ_BOOL {
  let mut l_read_data: OPJ_BOOL = 0;
  let mut l_nb_bytes_read = 0 as OPJ_UINT32;
  let mut l_nb_total_bytes_read = 0 as OPJ_UINT32;
  *p_data_read = 0 as OPJ_UINT32;
  if opj_t2_read_packet_header(
    p_t2,
    p_tile,
    p_tcp,
    p_pi,
    &mut l_read_data,
    p_src,
    &mut l_nb_bytes_read,
    p_max_length,
    p_pack_info,
    p_manager,
  ) == 0
  {
    return 0i32;
  }
  p_src = p_src.offset(l_nb_bytes_read as isize);
  l_nb_total_bytes_read =
    (l_nb_total_bytes_read as core::ffi::c_uint).wrapping_add(l_nb_bytes_read) as OPJ_UINT32;
  p_max_length = (p_max_length as core::ffi::c_uint).wrapping_sub(l_nb_bytes_read) as OPJ_UINT32;
  /* we should read data for the packet */
  if l_read_data != 0 {
    l_nb_bytes_read = 0 as OPJ_UINT32;
    if opj_t2_read_packet_data(
      p_t2,
      p_tile,
      p_pi,
      p_src,
      &mut l_nb_bytes_read,
      p_max_length,
      p_pack_info,
      p_manager,
    ) == 0
    {
      return 0i32;
    }
    l_nb_total_bytes_read =
      (l_nb_total_bytes_read as core::ffi::c_uint).wrapping_add(l_nb_bytes_read) as OPJ_UINT32
  }
  *p_data_read = l_nb_total_bytes_read;
  1i32
}
/* *
Encode a packet of a tile to a destination buffer
@param tileno Number of the tile encoded
@param tile Tile for which to write the packets
@param tcp Tile coding parameters
@param pi Packet identity
@param dest Destination buffer
@param p_data_written   FIXME DOC
@param len Length of the destination buffer
@param cstr_info Codestream information structure
@param p_t2_mode If == THRESH_CALC In Threshold calculation ,If == FINAL_PASS Final pass
@param p_manager the user event manager
@return
*/
unsafe fn opj_t2_encode_packet(
  mut tileno: OPJ_UINT32,
  mut tile: *mut opj_tcd_tile_t,
  mut tcp: *mut opj_tcp_t,
  mut pi: *mut opj_pi_iterator_t,
  mut dest: *mut OPJ_BYTE,
  mut p_data_written: *mut OPJ_UINT32,
  mut length: OPJ_UINT32,
  mut cstr_info: *mut opj_codestream_info_t,
  mut p_t2_mode: J2K_T2_MODE,
  mut p_manager: &mut opj_event_mgr,
) -> OPJ_BOOL {
  let mut bandno: OPJ_UINT32 = 0; /* component value */
  let mut cblkno: OPJ_UINT32 = 0; /* resolution level value */
  let mut c = dest; /* precinct value */
  let mut l_nb_bytes: OPJ_UINT32 = 0; /* quality layer value */
  let mut compno = (*pi).compno; /* BIO component */
  let mut resno = (*pi).resno;
  let mut precno = (*pi).precno;
  let mut layno = (*pi).layno;
  let mut l_nb_blocks: OPJ_UINT32 = 0;
  let mut band = std::ptr::null_mut::<opj_tcd_band_t>();
  let mut cblk = std::ptr::null_mut::<opj_tcd_cblk_enc_t>();
  let mut pass = std::ptr::null_mut::<opj_tcd_pass_t>();
  let mut tilec: *mut opj_tcd_tilecomp_t =
    &mut *(*tile).comps.offset(compno as isize) as *mut opj_tcd_tilecomp_t;
  let mut res: *mut opj_tcd_resolution_t =
    &mut *(*tilec).resolutions.offset(resno as isize) as *mut opj_tcd_resolution_t;
  let mut bio = std::ptr::null_mut::<opj_bio_t>();
  let mut packet_empty = 0i32;
  /* <SOP 0xff91> */
  if (*tcp).csty & 0x2u32 != 0 {
    if length < 6u32 {
      if p_t2_mode as core::ffi::c_uint == FINAL_PASS as core::ffi::c_uint {
        event_msg!(
          p_manager,
          EVT_ERROR,
          "opj_t2_encode_packet(): only %u bytes remaining in output buffer. %u needed.\n",
          length,
          6i32,
        ); /* packno is uint32_t */
      }
      return 0i32;
    }
    *c.offset(0) = 255 as OPJ_BYTE;
    *c.offset(1) = 145 as OPJ_BYTE;
    *c.offset(2) = 0 as OPJ_BYTE;
    *c.offset(3) = 4 as OPJ_BYTE;
    *c.offset(4) = ((*tile).packno >> 8i32 & 0xffu32) as OPJ_BYTE;
    *c.offset(5) = ((*tile).packno & 0xffu32) as OPJ_BYTE;
    c = c.offset(6);
    length = (length as core::ffi::c_uint).wrapping_sub(6u32) as OPJ_UINT32 as OPJ_UINT32
  }
  /* </SOP> */
  if layno == 0 {
    band = (*res).bands.as_mut_ptr();
    bandno = 0 as OPJ_UINT32;
    while bandno < (*res).numbands {
      let mut prc = std::ptr::null_mut::<opj_tcd_precinct_t>();
      /* Skip empty bands */
      if opj_tcd_is_band_empty(band) == 0 {
        /* Avoid out of bounds access of https://github.com/uclouvain/openjpeg/issues/1294 */
        /* but likely not a proper fix. */
        if precno >= (*res).pw.wrapping_mul((*res).ph) {
          event_msg!(
            p_manager,
            EVT_ERROR,
            "opj_t2_encode_packet(): accessing precno=%u >= %u\n",
            precno,
            (*res).pw.wrapping_mul((*res).ph),
          );
          return 0i32;
        }
        prc = &mut *(*band).precincts.offset(precno as isize) as *mut opj_tcd_precinct_t;
        opj_tgt_reset((*prc).incltree);
        opj_tgt_reset((*prc).imsbtree);
        l_nb_blocks = (*prc).cw.wrapping_mul((*prc).ch);
        cblkno = 0 as OPJ_UINT32;
        while cblkno < l_nb_blocks {
          cblk = &mut *(*prc).cblks.enc.offset(cblkno as isize) as *mut opj_tcd_cblk_enc_t;
          (*cblk).numpasses = 0 as OPJ_UINT32;
          opj_tgt_setvalue(
            (*prc).imsbtree,
            cblkno,
            (*band).numbps - (*cblk).numbps as OPJ_INT32,
          );
          cblkno += 1;
        }
      }
      bandno = bandno.wrapping_add(1);
      band = band.offset(1)
    }
  }
  bio = opj_bio_create();
  if bio.is_null() {
    /* FIXME event manager error callback */
    return 0i32;
  }
  opj_bio_init_enc(bio, c, length);
  /* Empty header bit */
  opj_bio_putbit(bio, if packet_empty != 0 { 0 } else { 1 });

  /* Writing Packet header */
  band = (*res).bands.as_mut_ptr();
  bandno = 0 as OPJ_UINT32;
  while packet_empty == 0 && bandno < (*res).numbands {
    let mut prc_0 = std::ptr::null_mut::<opj_tcd_precinct_t>();
    /* Skip empty bands */
    if opj_tcd_is_band_empty(band) == 0 {
      /* Avoid out of bounds access of https://github.com/uclouvain/openjpeg/issues/1297 */
      /* but likely not a proper fix. */
      if precno >= (*res).pw.wrapping_mul((*res).ph) {
        event_msg!(
          p_manager,
          EVT_ERROR,
          "opj_t2_encode_packet(): accessing precno=%u >= %u\n",
          precno,
          (*res).pw.wrapping_mul((*res).ph),
        );
        return 0i32;
      }
      prc_0 = &mut *(*band).precincts.offset(precno as isize) as *mut opj_tcd_precinct_t;
      l_nb_blocks = (*prc_0).cw.wrapping_mul((*prc_0).ch);
      cblk = (*prc_0).cblks.enc;
      cblkno = 0 as OPJ_UINT32;
      while cblkno < l_nb_blocks {
        let mut layer: *mut opj_tcd_layer_t =
          &mut *(*cblk).layers.offset(layno as isize) as *mut opj_tcd_layer_t;
        if (*cblk).numpasses == 0 && (*layer).numpasses != 0 {
          opj_tgt_setvalue((*prc_0).incltree, cblkno, layno as OPJ_INT32);
        }
        cblk = cblk.offset(1);
        cblkno += 1;
      }
      cblk = (*prc_0).cblks.enc;
      cblkno = 0 as OPJ_UINT32;
      while cblkno < l_nb_blocks {
        let mut layer_0: *mut opj_tcd_layer_t =
          &mut *(*cblk).layers.offset(layno as isize) as *mut opj_tcd_layer_t;
        let mut increment = 0 as OPJ_UINT32;
        let mut nump = 0 as OPJ_UINT32;
        let mut len = 0 as OPJ_UINT32;
        let mut passno: OPJ_UINT32 = 0;
        let mut l_nb_passes: OPJ_UINT32 = 0;
        /* cblk inclusion bits */
        if (*cblk).numpasses == 0 {
          opj_tgt_encode(
            bio,
            (*prc_0).incltree,
            cblkno,
            layno.wrapping_add(1u32) as OPJ_INT32,
          );
        } else {
          opj_bio_putbit(bio, ((*layer_0).numpasses != 0u32) as u32);
        }
        /* if cblk not included, go to the next cblk  */
        if (*layer_0).numpasses == 0 {
          cblk = cblk.offset(1)
        } else {
          /* if first instance of cblk --> zero bit-planes information */
          if (*cblk).numpasses == 0 {
            (*cblk).numlenbits = 3 as OPJ_UINT32;
            opj_tgt_encode(bio, (*prc_0).imsbtree, cblkno, 999i32);
          }
          /* number of coding passes included */
          opj_t2_putnumpasses(bio, (*layer_0).numpasses);
          l_nb_passes = (*cblk).numpasses.wrapping_add((*layer_0).numpasses);
          pass = (*cblk).passes.offset((*cblk).numpasses as isize);
          /* computation of the increase of the length indicator and insertion in the header     */
          passno = (*cblk).numpasses;
          while passno < l_nb_passes {
            nump = nump.wrapping_add(1);
            len = (len as core::ffi::c_uint).wrapping_add((*pass).len) as OPJ_UINT32;
            if (*pass).term() as core::ffi::c_int != 0
              || passno
                == (*cblk)
                  .numpasses
                  .wrapping_add((*layer_0).numpasses)
                  .wrapping_sub(1u32)
            {
              increment = opj_int_max(
                increment as OPJ_INT32,
                opj_int_floorlog2(len as OPJ_INT32) + 1i32
                  - ((*cblk).numlenbits as OPJ_INT32 + opj_int_floorlog2(nump as OPJ_INT32)),
              ) as OPJ_UINT32;
              len = 0 as OPJ_UINT32;
              nump = 0 as OPJ_UINT32
            }
            pass = pass.offset(1);
            passno += 1;
          }
          opj_t2_putcommacode(bio, increment as OPJ_INT32);
          /* computation of the new Length indicator */
          (*cblk).numlenbits =
            ((*cblk).numlenbits as core::ffi::c_uint).wrapping_add(increment) as OPJ_UINT32;
          pass = (*cblk).passes.offset((*cblk).numpasses as isize);
          /* insertion of the codeword segment length */
          passno = (*cblk).numpasses;
          while passno < l_nb_passes {
            nump = nump.wrapping_add(1);
            len = (len as core::ffi::c_uint).wrapping_add((*pass).len) as OPJ_UINT32;
            if (*pass).term() as core::ffi::c_int != 0
              || passno
                == (*cblk)
                  .numpasses
                  .wrapping_add((*layer_0).numpasses)
                  .wrapping_sub(1u32)
            {
              opj_bio_write(
                bio,
                len,
                (*cblk)
                  .numlenbits
                  .wrapping_add(opj_int_floorlog2(nump as OPJ_INT32) as OPJ_UINT32),
              );
              len = 0 as OPJ_UINT32;
              nump = 0 as OPJ_UINT32
            }
            pass = pass.offset(1);
            passno += 1;
          }
          cblk = cblk.offset(1)
        }
        cblkno += 1;
      }
    }
    bandno = bandno.wrapping_add(1);
    band = band.offset(1)
  }
  if opj_bio_flush(bio) == 0 {
    opj_bio_destroy(bio);
    return 0i32;
    /* modified to eliminate longjmp !! */
  }
  l_nb_bytes = opj_bio_numbytes(bio) as OPJ_UINT32;
  c = c.offset(l_nb_bytes as isize);
  length = (length as core::ffi::c_uint).wrapping_sub(l_nb_bytes) as OPJ_UINT32;
  opj_bio_destroy(bio);
  /* <EPH 0xff92> */
  if (*tcp).csty & 0x4u32 != 0 {
    if length < 2u32 {
      if p_t2_mode as core::ffi::c_uint == FINAL_PASS as core::ffi::c_uint {
        event_msg!(
          p_manager,
          EVT_ERROR,
          "opj_t2_encode_packet(): only %u bytes remaining in output buffer. %u needed.\n",
          length,
          2i32,
        );
      }
      return 0i32;
    }
    *c.offset(0) = 255 as OPJ_BYTE;
    *c.offset(1) = 146 as OPJ_BYTE;
    c = c.offset(2);
    length = (length as core::ffi::c_uint).wrapping_sub(2u32) as OPJ_UINT32 as OPJ_UINT32
  }
  /* </EPH> */
  /* << INDEX */
  /* End of packet header position. Currently only represents the distance to start of packet
  Will be updated later by incrementing with packet start value*/
  if !cstr_info.is_null() && (*cstr_info).index_write != 0 {
    let mut info_PK: *mut opj_packet_info_t = &mut *(*(*cstr_info).tile.offset(tileno as isize))
      .packet
      .offset((*cstr_info).packno as isize)
      as *mut opj_packet_info_t;
    (*info_PK).end_ph_pos = c.offset_from(dest) as OPJ_OFF_T
  }
  /* INDEX >> */
  /* Writing the packet body */
  band = (*res).bands.as_mut_ptr();
  bandno = 0 as OPJ_UINT32;
  while packet_empty == 0 && bandno < (*res).numbands {
    let mut prc_1 = std::ptr::null_mut::<opj_tcd_precinct_t>();
    /* Skip empty bands */
    if opj_tcd_is_band_empty(band) == 0 {
      prc_1 = &mut *(*band).precincts.offset(precno as isize) as *mut opj_tcd_precinct_t;
      l_nb_blocks = (*prc_1).cw.wrapping_mul((*prc_1).ch);
      cblk = (*prc_1).cblks.enc;
      cblkno = 0 as OPJ_UINT32;
      while cblkno < l_nb_blocks {
        let mut layer_1: *mut opj_tcd_layer_t =
          &mut *(*cblk).layers.offset(layno as isize) as *mut opj_tcd_layer_t;
        if (*layer_1).numpasses == 0 {
          cblk = cblk.offset(1)
        } else {
          if (*layer_1).len > length {
            if p_t2_mode as core::ffi::c_uint == FINAL_PASS as core::ffi::c_uint {
              event_msg!(
                p_manager,
                EVT_ERROR,
                "opj_t2_encode_packet(): only %u bytes remaining in output buffer. %u needed.\n",
                length,
                (*layer_1).len
              );
            }
            return 0i32;
          }

          if p_t2_mode == FINAL_PASS {
            memcpy(
              c as *mut core::ffi::c_void,
              (*layer_1).data as *const core::ffi::c_void,
              (*layer_1).len as usize,
            );
          }
          (*cblk).numpasses = ((*cblk).numpasses as core::ffi::c_uint)
            .wrapping_add((*layer_1).numpasses) as OPJ_UINT32;
          c = c.offset((*layer_1).len as isize);
          length = (length as core::ffi::c_uint).wrapping_sub((*layer_1).len) as OPJ_UINT32;
          /* INDEX >> */
          /* << INDEX */
          if !cstr_info.is_null() && (*cstr_info).index_write != 0 {
            let mut info_PK_0: *mut opj_packet_info_t =
              &mut *(*(*cstr_info).tile.offset(tileno as isize))
                .packet
                .offset((*cstr_info).packno as isize) as *mut opj_packet_info_t;
            (*info_PK_0).disto += (*layer_1).disto;
            if (*cstr_info).D_max < (*info_PK_0).disto {
              (*cstr_info).D_max = (*info_PK_0).disto
            }
          }
          cblk = cblk.offset(1)
        }
        cblkno += 1;
      }
    }
    bandno = bandno.wrapping_add(1);
    band = band.offset(1)
  }
  assert!(c >= dest);
  *p_data_written = (*p_data_written as core::ffi::c_uint)
    .wrapping_add(c.offset_from(dest) as OPJ_UINT32) as OPJ_UINT32;
  1i32
}
unsafe fn opj_t2_skip_packet(
  mut p_t2: *mut opj_t2_t,
  mut p_tile: *mut opj_tcd_tile_t,
  mut p_tcp: *mut opj_tcp_t,
  mut p_pi: *mut opj_pi_iterator_t,
  mut p_src: *mut OPJ_BYTE,
  mut p_data_read: *mut OPJ_UINT32,
  mut p_max_length: OPJ_UINT32,
  mut p_pack_info: *mut opj_packet_info_t,
  mut p_manager: &mut opj_event_mgr,
) -> OPJ_BOOL {
  let mut l_read_data: OPJ_BOOL = 0;
  let mut l_nb_bytes_read = 0 as OPJ_UINT32;
  let mut l_nb_total_bytes_read = 0 as OPJ_UINT32;
  *p_data_read = 0 as OPJ_UINT32;
  if opj_t2_read_packet_header(
    p_t2,
    p_tile,
    p_tcp,
    p_pi,
    &mut l_read_data,
    p_src,
    &mut l_nb_bytes_read,
    p_max_length,
    p_pack_info,
    p_manager,
  ) == 0
  {
    return 0i32;
  }
  p_src = p_src.offset(l_nb_bytes_read as isize);
  l_nb_total_bytes_read =
    (l_nb_total_bytes_read as core::ffi::c_uint).wrapping_add(l_nb_bytes_read) as OPJ_UINT32;
  p_max_length = (p_max_length as core::ffi::c_uint).wrapping_sub(l_nb_bytes_read) as OPJ_UINT32;
  /* we should read data for the packet */
  if l_read_data != 0 {
    l_nb_bytes_read = 0 as OPJ_UINT32;
    if opj_t2_skip_packet_data(
      p_t2,
      p_tile,
      p_pi,
      &mut l_nb_bytes_read,
      p_max_length,
      p_pack_info,
      p_manager,
    ) == 0
    {
      return 0i32;
    }
    l_nb_total_bytes_read =
      (l_nb_total_bytes_read as core::ffi::c_uint).wrapping_add(l_nb_bytes_read) as OPJ_UINT32
  }
  *p_data_read = l_nb_total_bytes_read;
  1i32
}

unsafe fn opj_t2_read_packet_header(
  mut p_t2: *mut opj_t2_t,
  mut p_tile: *mut opj_tcd_tile_t,
  mut p_tcp: *mut opj_tcp_t,
  mut p_pi: *mut opj_pi_iterator_t,
  mut p_is_data_present: *mut OPJ_BOOL,
  mut p_src_data: *mut OPJ_BYTE,
  mut p_data_read: *mut OPJ_UINT32,
  mut p_max_length: OPJ_UINT32,
  mut p_pack_info: *mut opj_packet_info_t,
  mut p_manager: &mut opj_event_mgr,
) -> OPJ_BOOL {
  /* loop */
  let mut bandno: OPJ_UINT32 = 0; /* BIO component */
  let mut cblkno: OPJ_UINT32 = 0;
  let mut l_nb_code_blocks: OPJ_UINT32 = 0;
  let mut l_remaining_length: OPJ_UINT32 = 0;
  let mut l_header_length: OPJ_UINT32 = 0;
  let mut l_modified_length_ptr = std::ptr::null_mut::<OPJ_UINT32>();
  let mut l_current_data = p_src_data;
  let mut l_cp = (*p_t2).cp;
  let mut l_bio = std::ptr::null_mut::<opj_bio_t>();
  let mut l_band = std::ptr::null_mut::<opj_tcd_band_t>();
  let mut l_cblk = std::ptr::null_mut::<opj_tcd_cblk_dec_t>();
  let mut l_res: *mut opj_tcd_resolution_t =
    &mut *(*(*p_tile).comps.offset((*p_pi).compno as isize))
      .resolutions
      .offset((*p_pi).resno as isize) as *mut opj_tcd_resolution_t;
  let mut l_header_data = std::ptr::null_mut::<OPJ_BYTE>();
  let mut l_header_data_start = std::ptr::null_mut::<*mut OPJ_BYTE>();
  let mut l_present: OPJ_UINT32 = 0;
  if (*p_pi).layno == 0u32 {
    l_band = (*l_res).bands.as_mut_ptr();
    /* reset tagtrees */
    bandno = 0 as OPJ_UINT32;
    while bandno < (*l_res).numbands {
      if opj_tcd_is_band_empty(l_band) == 0 {
        let mut l_prc: *mut opj_tcd_precinct_t =
          &mut *(*l_band).precincts.offset((*p_pi).precno as isize) as *mut opj_tcd_precinct_t;
        if ((*p_pi).precno as usize)
          >= ((*l_band).precincts_data_size as usize)
            .wrapping_div(core::mem::size_of::<opj_tcd_precinct_t>())
        {
          event_msg!(p_manager, EVT_ERROR, "Invalid precinct\n",);
          return 0i32;
        }
        opj_tgt_reset((*l_prc).incltree);
        opj_tgt_reset((*l_prc).imsbtree);
        l_cblk = (*l_prc).cblks.dec;
        l_nb_code_blocks = (*l_prc).cw.wrapping_mul((*l_prc).ch);
        cblkno = 0 as OPJ_UINT32;
        while cblkno < l_nb_code_blocks {
          (*l_cblk).numsegs = 0 as OPJ_UINT32;
          (*l_cblk).real_num_segs = 0 as OPJ_UINT32;
          l_cblk = l_cblk.offset(1);
          cblkno += 1;
        }
      }
      l_band = l_band.offset(1);
      bandno += 1;
    }
  }

  /* SOP markers */
  if (*p_tcp).csty & 0x2u32 != 0 {
    if p_max_length < 6u32 {
      event_msg!(
        p_manager,
        EVT_WARNING,
        "Not enough space for expected SOP marker\n",
      );
    } else if *l_current_data as core::ffi::c_int != 0xffi32
      || *l_current_data.offset(1) as core::ffi::c_int != 0x91i32
    {
      event_msg!(p_manager, EVT_WARNING, "Expected SOP marker\n",);
    } else {
      l_current_data = l_current_data.offset(6)
    }
    /* * TODO : check the Nsop value */
  }

  /*
  When the marker PPT/PPM is used the packet header are store in PPT/PPM marker
  This part deal with this characteristic
  step 1: Read packet header in the saved structure
  step 2: Return to codestream for decoding
  */
  l_bio = opj_bio_create();
  if l_bio.is_null() {
    return 0i32;
  }

  if (*l_cp).ppm() as core::ffi::c_int == 1i32 {
    /* PPM */
    l_header_data_start = &mut (*l_cp).ppm_data; /* Normal Case */
    l_header_data = *l_header_data_start;
    l_modified_length_ptr = &mut (*l_cp).ppm_len
  } else if (*p_tcp).ppt() as core::ffi::c_int == 1i32 {
    /* PPT */
    l_header_data_start = &mut (*p_tcp).ppt_data;
    l_header_data = *l_header_data_start;
    l_modified_length_ptr = &mut (*p_tcp).ppt_len
  } else {
    l_header_data_start = &mut l_current_data;
    l_header_data = *l_header_data_start;
    l_remaining_length = p_src_data
      .offset(p_max_length as isize)
      .offset_from(l_header_data) as OPJ_UINT32;
    l_modified_length_ptr = &mut l_remaining_length
  }

  opj_bio_init_dec(l_bio, l_header_data, *l_modified_length_ptr);

  l_present = opj_bio_read(l_bio, 1 as OPJ_UINT32);
  log::debug!("present={}", l_present);
  if l_present == 0 {
    /* TODO MSD: no test to control the output of this function*/
    opj_bio_inalign(l_bio);
    l_header_data = l_header_data.offset(opj_bio_numbytes(l_bio));
    opj_bio_destroy(l_bio);
    /* EPH markers */
    if (*p_tcp).csty & 0x4u32 != 0 {
      if (*l_modified_length_ptr)
        .wrapping_sub(l_header_data.offset_from(*l_header_data_start) as OPJ_UINT32)
        < 2u32
      {
        event_msg!(
          p_manager,
          EVT_WARNING,
          "Not enough space for expected EPH marker\n",
        );
      } else if *l_header_data as core::ffi::c_int != 0xffi32
        || *l_header_data.offset(1) as core::ffi::c_int != 0x92i32
      {
        event_msg!(p_manager, EVT_WARNING, "Expected EPH marker\n",);
      } else {
        l_header_data = l_header_data.offset(2)
      }
    }
    l_header_length = l_header_data.offset_from(*l_header_data_start) as OPJ_UINT32;
    *l_modified_length_ptr =
      (*l_modified_length_ptr as core::ffi::c_uint).wrapping_sub(l_header_length) as OPJ_UINT32;
    *l_header_data_start = (*l_header_data_start).offset(l_header_length as isize);
    /* << INDEX */
    /* End of packet header position. Currently only represents the distance to start of packet
    Will be updated later by incrementing with packet start value */
    if !p_pack_info.is_null() {
      (*p_pack_info).end_ph_pos = l_current_data.offset_from(p_src_data) as OPJ_OFF_T
    }
    /* INDEX >> */
    *p_is_data_present = 0i32;
    *p_data_read = l_current_data.offset_from(p_src_data) as OPJ_UINT32;
    return 1i32;
  }

  l_band = (*l_res).bands.as_mut_ptr();
  bandno = 0 as OPJ_UINT32;
  while bandno < (*l_res).numbands {
    let mut l_prc_0: *mut opj_tcd_precinct_t =
      &mut *(*l_band).precincts.offset((*p_pi).precno as isize) as *mut opj_tcd_precinct_t;
    if opj_tcd_is_band_empty(l_band) == 0 {
      l_nb_code_blocks = (*l_prc_0).cw.wrapping_mul((*l_prc_0).ch);
      l_cblk = (*l_prc_0).cblks.dec;
      cblkno = 0 as OPJ_UINT32;
      while cblkno < l_nb_code_blocks {
        let mut l_included: OPJ_UINT32 = 0;
        let mut l_increment: OPJ_UINT32 = 0;
        let mut l_segno: OPJ_UINT32 = 0;
        let mut n: OPJ_INT32 = 0;

        /* if cblk not yet included before --> inclusion tagtree */
        if (*l_cblk).numsegs == 0 {
          l_included = opj_tgt_decode(
            l_bio,
            (*l_prc_0).incltree,
            cblkno,
            (*p_pi).layno.wrapping_add(1u32) as OPJ_INT32,
          )
        /* else one bit */
        } else {
          l_included = opj_bio_read(l_bio, 1 as OPJ_UINT32)
        }

        /* if cblk not included */
        if l_included == 0 {
          (*l_cblk).numnewpasses = 0 as OPJ_UINT32;
          l_cblk = l_cblk.offset(1);
          log::debug!("included={}", l_included);
        } else {
          /* if cblk not yet included --> zero-bitplane tagtree */
          if (*l_cblk).numsegs == 0 {
            let mut i = 0 as OPJ_UINT32;
            while opj_tgt_decode(l_bio, (*l_prc_0).imsbtree, cblkno, i as OPJ_INT32) == 0 {
              i += 1;
            }
            (*l_cblk).Mb = (*l_band).numbps as OPJ_UINT32;
            if (*l_band).numbps as u32 + 1 < i {
              /* Not totally sure what we should do in that situation,
               * but that avoids the integer overflow of
               * https://github.com/uclouvain/openjpeg/pull/1488
               * while keeping the regression test suite happy.
               */
              (*l_cblk).numbps = ((*l_band).numbps + 1 - i as i32) as u32;
            } else {
              (*l_cblk).numbps = (*l_band).numbps as u32 + 1 - i;
            }
            (*l_cblk).numlenbits = 3 as OPJ_UINT32
          }
          /* number of coding passes */
          (*l_cblk).numnewpasses = opj_t2_getnumpasses(l_bio);
          l_increment = opj_t2_getcommacode(l_bio);
          /* length indicator increment */
          (*l_cblk).numlenbits =
            ((*l_cblk).numlenbits as core::ffi::c_uint).wrapping_add(l_increment) as OPJ_UINT32;
          l_segno = 0 as OPJ_UINT32;
          if (*l_cblk).numsegs == 0 {
            if opj_t2_init_seg(
              l_cblk,
              l_segno,
              (*(*p_tcp).tccps.offset((*p_pi).compno as isize)).cblksty,
              1 as OPJ_UINT32,
            ) == 0
            {
              opj_bio_destroy(l_bio);
              return 0i32;
            }
          } else {
            l_segno = (*l_cblk).numsegs.wrapping_sub(1u32);
            if (*(*l_cblk).segs.offset(l_segno as isize)).numpasses
              == (*(*l_cblk).segs.offset(l_segno as isize)).maxpasses
            {
              l_segno = l_segno.wrapping_add(1);
              if opj_t2_init_seg(
                l_cblk,
                l_segno,
                (*(*p_tcp).tccps.offset((*p_pi).compno as isize)).cblksty,
                0 as OPJ_UINT32,
              ) == 0
              {
                opj_bio_destroy(l_bio);
                return 0i32;
              }
            }
          }
          n = (*l_cblk).numnewpasses as OPJ_INT32;
          if (*(*p_tcp).tccps.offset((*p_pi).compno as isize)).cblksty & 0x40u32 != 0u32 {
            loop {
              let mut bit_number: OPJ_UINT32 = 0;
              (*(*l_cblk).segs.offset(l_segno as isize)).numnewpasses = if l_segno == 0u32 {
                1u32
              } else {
                n as OPJ_UINT32
              };
              bit_number = (*l_cblk).numlenbits.wrapping_add(opj_uint_floorlog2(
                (*(*l_cblk).segs.offset(l_segno as isize)).numnewpasses,
              ));
              if bit_number > 32u32 {
                event_msg!(
                  p_manager,
                  EVT_ERROR,
                  "Invalid bit number %d in opj_t2_read_packet_header()\n",
                  bit_number,
                );
                opj_bio_destroy(l_bio);
                return 0i32;
              }
              (*(*l_cblk).segs.offset(l_segno as isize)).newlen = opj_bio_read(l_bio, bit_number);
              log::debug!(
                "included={} numnewpasses={} increment={} len={}",
                l_included,
                (*(*l_cblk).segs.offset(l_segno as isize)).numnewpasses,
                l_increment,
                (*(*l_cblk).segs.offset(l_segno as isize)).newlen,
              );
              n -= (*(*l_cblk).segs.offset(l_segno as isize)).numnewpasses as OPJ_INT32;
              if n > 0i32 {
                l_segno = l_segno.wrapping_add(1);
                if opj_t2_init_seg(
                  l_cblk,
                  l_segno,
                  (*(*p_tcp).tccps.offset((*p_pi).compno as isize)).cblksty,
                  0 as OPJ_UINT32,
                ) == 0
                {
                  opj_bio_destroy(l_bio);
                  return 0i32;
                }
              }
              if n <= 0i32 {
                break;
              }
            }
          } else {
            loop {
              let mut bit_number_0: OPJ_UINT32 = 0;
              (*(*l_cblk).segs.offset(l_segno as isize)).numnewpasses = opj_int_min(
                (*(*l_cblk).segs.offset(l_segno as isize))
                  .maxpasses
                  .wrapping_sub((*(*l_cblk).segs.offset(l_segno as isize)).numpasses)
                  as OPJ_INT32,
                n,
              )
                as OPJ_UINT32;
              bit_number_0 = (*l_cblk).numlenbits.wrapping_add(opj_uint_floorlog2(
                (*(*l_cblk).segs.offset(l_segno as isize)).numnewpasses,
              ));
              if bit_number_0 > 32u32 {
                event_msg!(
                  p_manager,
                  EVT_ERROR,
                  "Invalid bit number %d in opj_t2_read_packet_header()\n",
                  bit_number_0,
                );
                opj_bio_destroy(l_bio);
                return 0i32;
              }
              (*(*l_cblk).segs.offset(l_segno as isize)).newlen = opj_bio_read(l_bio, bit_number_0);
              log::debug!(
                "included={} numnewpasses={} increment={} len={}",
                l_included,
                (*(*l_cblk).segs.offset(l_segno as isize)).numnewpasses,
                l_increment,
                (*(*l_cblk).segs.offset(l_segno as isize)).newlen,
              );
              n -= (*(*l_cblk).segs.offset(l_segno as isize)).numnewpasses as OPJ_INT32;
              if n > 0i32 {
                l_segno = l_segno.wrapping_add(1);
                if opj_t2_init_seg(
                  l_cblk,
                  l_segno,
                  (*(*p_tcp).tccps.offset((*p_pi).compno as isize)).cblksty,
                  0 as OPJ_UINT32,
                ) == 0
                {
                  opj_bio_destroy(l_bio);
                  return 0i32;
                }
              }
              if n <= 0i32 {
                break;
              }
            }
          }
          l_cblk = l_cblk.offset(1)
        }
        cblkno += 1;
      }
    }
    bandno = bandno.wrapping_add(1);
    l_band = l_band.offset(1)
  }
  if opj_bio_inalign(l_bio) == 0 {
    opj_bio_destroy(l_bio);
    return 0i32;
  }
  l_header_data = l_header_data.offset(opj_bio_numbytes(l_bio));
  opj_bio_destroy(l_bio);
  /* EPH markers */
  if (*p_tcp).csty & 0x4u32 != 0 {
    if (*l_modified_length_ptr)
      .wrapping_sub(l_header_data.offset_from(*l_header_data_start) as OPJ_UINT32)
      < 2u32
    {
      event_msg!(
        p_manager,
        EVT_WARNING,
        "Not enough space for expected EPH marker\n",
      );
    } else if *l_header_data as core::ffi::c_int != 0xffi32
      || *l_header_data.offset(1) as core::ffi::c_int != 0x92i32
    {
      event_msg!(p_manager, EVT_WARNING, "Expected EPH marker\n",);
    } else {
      l_header_data = l_header_data.offset(2)
    }
  }
  l_header_length = l_header_data.offset_from(*l_header_data_start) as OPJ_UINT32;
  log::debug!("hdrlen={}", l_header_length);
  log::debug!("packet body");
  *l_modified_length_ptr =
    (*l_modified_length_ptr as core::ffi::c_uint).wrapping_sub(l_header_length) as OPJ_UINT32;
  *l_header_data_start = (*l_header_data_start).offset(l_header_length as isize);
  /* << INDEX */
  /* End of packet header position. Currently only represents the distance to start of packet
  Will be updated later by incrementing with packet start value */
  if !p_pack_info.is_null() {
    (*p_pack_info).end_ph_pos = l_current_data.offset_from(p_src_data) as OPJ_OFF_T
  }
  /* INDEX >> */
  *p_is_data_present = 1i32; /* next code_block */
  *p_data_read = l_current_data.offset_from(p_src_data) as OPJ_UINT32;
  1i32
}
unsafe fn opj_t2_read_packet_data(
  mut p_t2: *mut opj_t2_t,
  mut p_tile: *mut opj_tcd_tile_t,
  mut p_pi: *mut opj_pi_iterator_t,
  mut p_src_data: *mut OPJ_BYTE,
  mut p_data_read: *mut OPJ_UINT32,
  mut p_max_length: OPJ_UINT32,
  mut _pack_info: *mut opj_packet_info_t,
  mut p_manager: &mut opj_event_mgr,
) -> OPJ_BOOL {
  let mut bandno: OPJ_UINT32 = 0;
  let mut cblkno: OPJ_UINT32 = 0;
  let mut l_nb_code_blocks: OPJ_UINT32 = 0;
  let mut l_current_data = p_src_data;
  let mut l_band = std::ptr::null_mut::<opj_tcd_band_t>();
  let mut l_cblk = std::ptr::null_mut::<opj_tcd_cblk_dec_t>();
  let mut l_res: *mut opj_tcd_resolution_t =
    &mut *(*(*p_tile).comps.offset((*p_pi).compno as isize))
      .resolutions
      .offset((*p_pi).resno as isize) as *mut opj_tcd_resolution_t;
  let mut partial_buffer = 0i32;
  l_band = (*l_res).bands.as_mut_ptr();
  bandno = 0 as OPJ_UINT32;
  while bandno < (*l_res).numbands {
    let mut l_prc: *mut opj_tcd_precinct_t =
      &mut *(*l_band).precincts.offset((*p_pi).precno as isize) as *mut opj_tcd_precinct_t;
    if (*l_band).x1 - (*l_band).x0 == 0i32 || (*l_band).y1 - (*l_band).y0 == 0i32 {
      l_band = l_band.offset(1)
    } else {
      l_nb_code_blocks = (*l_prc).cw.wrapping_mul((*l_prc).ch);
      l_cblk = (*l_prc).cblks.dec;
      cblkno = 0 as OPJ_UINT32;
      while cblkno < l_nb_code_blocks {
        let mut l_seg = std::ptr::null_mut::<opj_tcd_seg_t>();
        // if we have a partial data stream, set numchunks to zero
        // since we have no data to actually decode.
        if partial_buffer != 0 {
          (*l_cblk).numchunks = 0 as OPJ_UINT32
        }
        if (*l_cblk).numnewpasses == 0 {
          /* nothing to do */
          l_cblk = l_cblk.offset(1)
        } else {
          if (*l_cblk).numsegs == 0 {
            l_seg = (*l_cblk).segs;
            (*l_cblk).numsegs = (*l_cblk).numsegs.wrapping_add(1)
          } else {
            l_seg = &mut *(*l_cblk)
              .segs
              .offset((*l_cblk).numsegs.wrapping_sub(1u32) as isize)
              as *mut opj_tcd_seg_t;
            if (*l_seg).numpasses == (*l_seg).maxpasses {
              l_seg = l_seg.offset(1);
              (*l_cblk).numsegs = (*l_cblk).numsegs.wrapping_add(1)
            }
          }
          loop
          /* Check possible overflow (on l_current_data only, assumes input args already checked) then size */
          {
            if (l_current_data as OPJ_SIZE_T).wrapping_add((*l_seg).newlen as OPJ_SIZE_T)
              < l_current_data as OPJ_SIZE_T
              || l_current_data.offset((*l_seg).newlen as isize)
                > p_src_data.offset(p_max_length as isize)
              || partial_buffer != 0
            {
              if (*(*p_t2).cp).strict != 0 {
                event_msg!(p_manager, EVT_ERROR,
                                              "read: segment too long (%d) with max (%d) for codeblock %d (p=%d, b=%d, r=%d, c=%d)\n",
                                              (*l_seg).newlen, p_max_length,
                                              cblkno, (*p_pi).precno, bandno,
                                              (*p_pi).resno, (*p_pi).compno);
                return 0i32;
              } else {
                event_msg!(p_manager, EVT_WARNING,
                                              "read: segment too long (%d) with max (%d) for codeblock %d (p=%d, b=%d, r=%d, c=%d)\n",
                                              (*l_seg).newlen, p_max_length,
                                              cblkno, (*p_pi).precno, bandno,
                                              (*p_pi).resno, (*p_pi).compno);
                // skip this codeblock since it is a partial read
                partial_buffer = 1i32;
                (*l_cblk).numchunks = 0 as OPJ_UINT32;
                (*l_seg).numpasses = ((*l_seg).numpasses as core::ffi::c_uint)
                  .wrapping_add((*l_seg).numnewpasses)
                  as OPJ_UINT32;
                (*l_cblk).numnewpasses = ((*l_cblk).numnewpasses as core::ffi::c_uint)
                  .wrapping_sub((*l_seg).numnewpasses)
                  as OPJ_UINT32;
                if (*l_cblk).numnewpasses > 0u32 {
                  l_seg = l_seg.offset(1);
                  (*l_cblk).numsegs = (*l_cblk).numsegs.wrapping_add(1);
                  break;
                }
              }
            } else {
              /* USE_JPWL */
              if (*l_cblk).numchunks == (*l_cblk).numchunksalloc {
                let mut l_numchunksalloc = (*l_cblk)
                  .numchunksalloc
                  .wrapping_mul(2u32)
                  .wrapping_add(1u32);
                let mut l_chunks = opj_realloc(
                  (*l_cblk).chunks as *mut core::ffi::c_void,
                  (l_numchunksalloc as usize)
                    .wrapping_mul(core::mem::size_of::<opj_tcd_seg_data_chunk_t>()),
                ) as *mut opj_tcd_seg_data_chunk_t;
                if l_chunks.is_null() {
                  event_msg!(
                    p_manager,
                    EVT_ERROR,
                    "cannot allocate opj_tcd_seg_data_chunk_t* array",
                  );
                  return 0i32;
                }
                (*l_cblk).chunks = l_chunks;
                (*l_cblk).numchunksalloc = l_numchunksalloc
              }
              let fresh0 = &mut (*(*l_cblk).chunks.offset((*l_cblk).numchunks as isize)).data;
              *fresh0 = l_current_data;
              (*(*l_cblk).chunks.offset((*l_cblk).numchunks as isize)).len = (*l_seg).newlen;
              (*l_cblk).numchunks = (*l_cblk).numchunks.wrapping_add(1);
              l_current_data = l_current_data.offset((*l_seg).newlen as isize);
              (*l_seg).len =
                ((*l_seg).len as core::ffi::c_uint).wrapping_add((*l_seg).newlen) as OPJ_UINT32;
              (*l_seg).numpasses = ((*l_seg).numpasses as core::ffi::c_uint)
                .wrapping_add((*l_seg).numnewpasses)
                as OPJ_UINT32;
              (*l_cblk).numnewpasses = ((*l_cblk).numnewpasses as core::ffi::c_uint)
                .wrapping_sub((*l_seg).numnewpasses)
                as OPJ_UINT32;
              (*l_seg).real_num_passes = (*l_seg).numpasses;
              if (*l_cblk).numnewpasses > 0u32 {
                l_seg = l_seg.offset(1);
                (*l_cblk).numsegs = (*l_cblk).numsegs.wrapping_add(1)
              }
            }
            if (*l_cblk).numnewpasses <= 0u32 {
              break;
            }
          }
          (*l_cblk).real_num_segs = (*l_cblk).numsegs;
          l_cblk = l_cblk.offset(1)
        }
        cblkno += 1;
      }
      l_band = l_band.offset(1)
    }
    bandno += 1;
  }
  // return the number of bytes read
  if partial_buffer != 0 {
    *p_data_read = p_max_length
  } else {
    *p_data_read = l_current_data.offset_from(p_src_data) as OPJ_UINT32
  }
  1i32
}

unsafe fn opj_t2_skip_packet_data(
  mut p_t2: *mut opj_t2_t,
  mut p_tile: *mut opj_tcd_tile_t,
  mut p_pi: *mut opj_pi_iterator_t,
  mut p_data_read: *mut OPJ_UINT32,
  mut p_max_length: OPJ_UINT32,
  mut _pack_info: *mut opj_packet_info_t,
  mut p_manager: &mut opj_event_mgr,
) -> OPJ_BOOL {
  let mut bandno: OPJ_UINT32 = 0;
  let mut cblkno: OPJ_UINT32 = 0;
  let mut l_nb_code_blocks: OPJ_UINT32 = 0;
  let mut l_band = std::ptr::null_mut::<opj_tcd_band_t>();
  let mut l_cblk = std::ptr::null_mut::<opj_tcd_cblk_dec_t>();
  let mut l_res: *mut opj_tcd_resolution_t =
    &mut *(*(*p_tile).comps.offset((*p_pi).compno as isize))
      .resolutions
      .offset((*p_pi).resno as isize) as *mut opj_tcd_resolution_t;
  *p_data_read = 0 as OPJ_UINT32;
  l_band = (*l_res).bands.as_mut_ptr();
  bandno = 0 as OPJ_UINT32;
  while bandno < (*l_res).numbands {
    let mut l_prc: *mut opj_tcd_precinct_t =
      &mut *(*l_band).precincts.offset((*p_pi).precno as isize) as *mut opj_tcd_precinct_t;
    if (*l_band).x1 - (*l_band).x0 == 0i32 || (*l_band).y1 - (*l_band).y0 == 0i32 {
      l_band = l_band.offset(1)
    } else {
      l_nb_code_blocks = (*l_prc).cw.wrapping_mul((*l_prc).ch);
      l_cblk = (*l_prc).cblks.dec;
      cblkno = 0 as OPJ_UINT32;
      while cblkno < l_nb_code_blocks {
        let mut l_seg = std::ptr::null_mut::<opj_tcd_seg_t>();
        if (*l_cblk).numnewpasses == 0 {
          /* nothing to do */
          l_cblk = l_cblk.offset(1)
        } else {
          if (*l_cblk).numsegs == 0 {
            l_seg = (*l_cblk).segs;
            (*l_cblk).numsegs = (*l_cblk).numsegs.wrapping_add(1)
          } else {
            l_seg = &mut *(*l_cblk)
              .segs
              .offset((*l_cblk).numsegs.wrapping_sub(1u32) as isize)
              as *mut opj_tcd_seg_t;
            if (*l_seg).numpasses == (*l_seg).maxpasses {
              l_seg = l_seg.offset(1);
              (*l_cblk).numsegs = (*l_cblk).numsegs.wrapping_add(1)
            }
          }
          loop {
            /* Check possible overflow then size */
            if (*p_data_read).wrapping_add((*l_seg).newlen) < *p_data_read
              || (*p_data_read).wrapping_add((*l_seg).newlen) > p_max_length
            {
              if (*(*p_t2).cp).strict != 0 {
                event_msg!(p_manager, EVT_ERROR,
                                              "skip: segment too long (%d) with max (%d) for codeblock %d (p=%d, b=%d, r=%d, c=%d)\n",
                                              (*l_seg).newlen, p_max_length,
                                              cblkno, (*p_pi).precno, bandno,
                                              (*p_pi).resno, (*p_pi).compno);
                return 0i32;
              } else {
                event_msg!(p_manager, EVT_WARNING,
                                              "skip: segment too long (%d) with max (%d) for codeblock %d (p=%d, b=%d, r=%d, c=%d)\n",
                                              (*l_seg).newlen, p_max_length,
                                              cblkno, (*p_pi).precno, bandno,
                                              (*p_pi).resno, (*p_pi).compno);
                return 1i32;
              }
            }
            /* USE_JPWL */
            log::debug!(
              "p_data_read ({}) newlen ({})",
              *p_data_read,
              (*l_seg).newlen
            );
            *p_data_read =
              (*p_data_read as core::ffi::c_uint).wrapping_add((*l_seg).newlen) as OPJ_UINT32;
            (*l_seg).numpasses = ((*l_seg).numpasses as core::ffi::c_uint)
              .wrapping_add((*l_seg).numnewpasses) as OPJ_UINT32
              as OPJ_UINT32;
            (*l_cblk).numnewpasses = ((*l_cblk).numnewpasses as core::ffi::c_uint)
              .wrapping_sub((*l_seg).numnewpasses)
              as OPJ_UINT32;
            if (*l_cblk).numnewpasses > 0u32 {
              l_seg = l_seg.offset(1);
              (*l_cblk).numsegs = (*l_cblk).numsegs.wrapping_add(1)
            }
            if (*l_cblk).numnewpasses <= 0u32 {
              break;
            }
          }
          l_cblk = l_cblk.offset(1)
        }
        cblkno += 1;
      }
      l_band = l_band.offset(1)
    }
    bandno += 1;
  }
  1i32
}
/* *
@param cblk
@param index
@param cblksty
@param first
*/
unsafe fn opj_t2_init_seg(
  mut cblk: *mut opj_tcd_cblk_dec_t,
  mut index: OPJ_UINT32,
  mut cblksty: OPJ_UINT32,
  mut first: OPJ_UINT32,
) -> OPJ_BOOL {
  let mut seg = std::ptr::null_mut::<opj_tcd_seg_t>();
  let mut l_nb_segs = index.wrapping_add(1u32);
  if l_nb_segs > (*cblk).m_current_max_segs {
    let mut new_segs = std::ptr::null_mut::<opj_tcd_seg_t>();
    let mut l_m_current_max_segs = (*cblk).m_current_max_segs.wrapping_add(10u32);
    new_segs = opj_realloc(
      (*cblk).segs as *mut core::ffi::c_void,
      (l_m_current_max_segs as usize).wrapping_mul(core::mem::size_of::<opj_tcd_seg_t>()),
    ) as *mut opj_tcd_seg_t;
    if new_segs.is_null() {
      /* event_msg!(p_manager, EVT_ERROR, "Not enough memory to initialize segment %d\n", l_nb_segs); */
      return 0i32;
    }
    (*cblk).segs = new_segs;
    memset(
      new_segs.offset((*cblk).m_current_max_segs as isize) as *mut core::ffi::c_void,
      0i32,
      10 * core::mem::size_of::<opj_tcd_seg_t>(),
    );
    (*cblk).m_current_max_segs = l_m_current_max_segs
  }
  seg = &mut *(*cblk).segs.offset(index as isize) as *mut opj_tcd_seg_t;
  opj_tcd_reinit_segment(seg);
  if cblksty & 0x4u32 != 0 {
    (*seg).maxpasses = 1 as OPJ_UINT32
  } else if cblksty & 0x1u32 != 0 {
    if first != 0 {
      (*seg).maxpasses = 10 as OPJ_UINT32
    } else {
      (*seg).maxpasses =
        if (*seg.offset(-1)).maxpasses == 1u32 || (*seg.offset(-1)).maxpasses == 10u32 {
          2i32
        } else {
          1i32
        } as OPJ_UINT32
    }
  } else {
    /* See paragraph "B.10.6 Number of coding passes" of the standard.
     * Probably that 109 must be interpreted a (Mb-1)*3 + 1 with Mb=37,
     * Mb being the maximum number of bit-planes available for the
     * representation of coefficients in the sub-band */
    (*seg).maxpasses = 109 as OPJ_UINT32
  }
  1i32
}