jpc_dec.h 18.5 KB
Newer Older
1 2 3 4 5 6 7 8
/*
 * Copyright (c) 1999-2000 Image Power, Inc. and the University of
 *   British Columbia.
 * Copyright (c) 2001-2002 Michael David Adams.
 * All rights reserved.
 */

/* __START_OF_JASPER_LICENSE__
9
 *
10
 * JasPer License Version 2.0
11
 *
12 13 14
 * Copyright (c) 2001-2006 Michael David Adams
 * Copyright (c) 1999-2000 Image Power, Inc.
 * Copyright (c) 1999-2000 The University of British Columbia
15
 *
16
 * All rights reserved.
17
 *
18 19 20 21 22 23 24
 * Permission is hereby granted, free of charge, to any person (the
 * "User") obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without restriction,
 * including without limitation the rights to use, copy, modify, merge,
 * publish, distribute, and/or sell copies of the Software, and to permit
 * persons to whom the Software is furnished to do so, subject to the
 * following conditions:
25
 *
26 27 28
 * 1.  The above copyright notices and this permission notice (which
 * includes the disclaimer below) shall be included in all copies or
 * substantial portions of the Software.
29
 *
30 31 32
 * 2.  The name of a copyright holder shall not be used to endorse or
 * promote products derived from the Software without specific prior
 * written permission.
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
 * THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
 * LICENSE.  NO USE OF THE SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER
 * THIS DISCLAIMER.  THE SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS
 * "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
 * PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.  IN NO
 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
 * INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
 * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.  NO ASSURANCES ARE
 * PROVIDED BY THE COPYRIGHT HOLDERS THAT THE SOFTWARE DOES NOT INFRINGE
 * THE PATENT OR OTHER INTELLECTUAL PROPERTY RIGHTS OF ANY OTHER ENTITY.
 * EACH COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY TO THE USER FOR CLAIMS
 * BROUGHT BY ANY OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL
 * PROPERTY RIGHTS OR OTHERWISE.  AS A CONDITION TO EXERCISING THE RIGHTS
 * GRANTED HEREUNDER, EACH USER HEREBY ASSUMES SOLE RESPONSIBILITY TO SECURE
 * ANY OTHER INTELLECTUAL PROPERTY RIGHTS NEEDED, IF ANY.  THE SOFTWARE
 * IS NOT FAULT-TOLERANT AND IS NOT INTENDED FOR USE IN MISSION-CRITICAL
 * SYSTEMS, SUCH AS THOSE USED IN THE OPERATION OF NUCLEAR FACILITIES,
 * AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL
 * SYSTEMS, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH
 * THE FAILURE OF THE SOFTWARE OR SYSTEM COULD LEAD DIRECTLY TO DEATH,
 * PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH
 * RISK ACTIVITIES").  THE COPYRIGHT HOLDERS SPECIFICALLY DISCLAIM ANY
 * EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES.
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
 * __END_OF_JASPER_LICENSE__
 */

/*
 * JPEG-2000 Decoder
 *
 * $Id: jpc_dec.h,v 1.2 2008-05-26 09:40:52 vp153 Exp $
 */

#ifndef JPC_DEC_H
#define JPC_DEC_H

/******************************************************************************\
* Includes.
\******************************************************************************/

#include "jasper/jas_stream.h"

#include "jpc_tsfb.h"
#include "jpc_bs.h"
#include "jpc_tagtree.h"
#include "jpc_cs.h"
#include "jpc_cod.h"
#include "jpc_mqdec.h"
#include "jpc_t2cod.h"

/******************************************************************************\
* Below are some ugly warts necessary to support packed packet headers.
\******************************************************************************/

/* PPM/PPT marker segment table entry. */

typedef struct {

95 96
    /* The index for this entry. */
    uint_fast16_t ind;
97

98 99
    /* The data length. */
    uint_fast32_t len;
100

101 102
    /* The data. */
    uchar *data;
103 104 105 106 107 108 109

} jpc_ppxstabent_t;

/* PPM/PPT marker segment table. */

typedef struct {

110 111
    /* The number of entries. */
    int numents;
112

113 114 115
    /* The maximum number of entries (i.e., the allocated size of the array
      below). */
    int maxents;
116

117 118
    /* The table entries. */
    jpc_ppxstabent_t **ents;
119 120 121 122 123 124 125

} jpc_ppxstab_t;

/* Stream list class. */

typedef struct {

126 127
    /* The number of streams in this list. */
    int numstreams;
128

129 130 131
    /* The maximum number of streams that can be accomodated without
      growing the streams array. */
    int maxstreams;
132

133 134
    /* The streams. */
    jas_stream_t **streams;
135 136 137 138 139 140 141 142 143 144 145

} jpc_streamlist_t;

/******************************************************************************\
* Coding parameters class.
\******************************************************************************/

/* Per-component coding parameters. */

typedef struct {

146 147
    /* How were various coding parameters set? */
    int flags;
148

149 150
    /* Per-component coding style parameters (e.g., explicit precinct sizes) */
    uint_fast8_t csty;
151

152 153
    /* The number of resolution levels. */
    uint_fast8_t numrlvls;
154

155 156
    /* The code block width exponent. */
    uint_fast8_t cblkwidthexpn;
157

158 159
    /* The code block height exponent. */
    uint_fast8_t cblkheightexpn;
160

161 162
    /* The QMFB ID. */
    uint_fast8_t qmfbid;
163

164 165
    /* The quantization style. */
    uint_fast8_t qsty;
166

167 168
    /* The number of quantizer step sizes. */
    uint_fast16_t numstepsizes;
169

170 171
    /* The step sizes. */
    uint_fast16_t stepsizes[3 * JPC_MAXRLVLS + 1];
172

173 174
    /* The number of guard bits. */
    uint_fast8_t numguardbits;
175

176 177
    /* The ROI shift value. */
    uint_fast8_t roishift;
178

179 180
    /* The code block parameters. */
    uint_fast8_t cblkctx;
181

182 183
    /* The precinct width exponents. */
    uint_fast8_t prcwidthexpns[JPC_MAXRLVLS];
184

185 186
    /* The precinct height exponents. */
    uint_fast8_t prcheightexpns[JPC_MAXRLVLS];
187 188 189 190 191 192 193

} jpc_dec_ccp_t;

/* Coding paramters. */

typedef struct {

194 195
    /* How were these coding parameters set? */
    int flags;
196

197 198
    /* Progression change list. */
    jpc_pchglist_t *pchglist;
199

200 201
    /* Progression order. */
    uint_fast8_t prgord;
202

203 204
    /* The number of layers. */
    uint_fast16_t numlyrs;
205

206 207
    /* The MCT ID. */
    uint_fast8_t mctid;
208

209 210
    /* The coding style parameters (e.g., SOP, EPH). */
    uint_fast8_t csty;
211

212 213
    /* The number of components. */
    int numcomps;
214

215 216
    /* The per-component coding parameters. */
    jpc_dec_ccp_t *ccps;
217 218 219 220 221 222 223 224 225 226 227

} jpc_dec_cp_t;

/******************************************************************************\
* Decoder class.
\******************************************************************************/

/* Decoder per-segment state information. */

typedef struct jpc_dec_seg_s {

228 229
    /* The next segment in the list. */
    struct jpc_dec_seg_s *next;
230

231 232
    /* The previous segment in the list. */
    struct jpc_dec_seg_s *prev;
233

234 235
    /* The starting pass number for this segment. */
    int passno;
236

237 238
    /* The number of passes in this segment. */
    int numpasses;
239

240 241
    /* The maximum number of passes in this segment. */
    int maxpasses;
242

243 244
    /* The type of data in this segment (i.e., MQ or raw). */
    int type;
245

246 247
    /* A stream containing the data for this segment. */
    jas_stream_t *stream;
248

249 250 251
    /* The number of bytes destined for this segment from the packet
      currently being decoded. */
    int cnt;
252

253 254
    /* A flag indicating if this segment has been terminated. */
    int complete;
255

256 257 258 259
    /* The layer number to which this segment belongs. */
    /* If the segment spans multiple layers, then the largest layer number
      spanned by the segment is used. */
    int lyrno;
260 261 262 263 264 265 266

} jpc_dec_seg_t;

/* Decoder segment list. */

typedef struct {

267 268
    /* The first entry in the list. */
    jpc_dec_seg_t *head;
269

270 271
    /* The last entry in the list. */
    jpc_dec_seg_t *tail;
272 273 274 275 276 277 278

} jpc_dec_seglist_t;

/* Decoder per-code-block state information. */

typedef struct {

279 280
    /* The number of passes. */
    int numpasses;
281

282 283
    /* A list of segments that still need to be decoded. */
    jpc_dec_seglist_t segs;
284

285 286
    /* The first incomplete/partial segment. */
    jpc_dec_seg_t *curseg;
287

288 289
    /* The number of leading insignificant bit planes for this code block. */
    int numimsbs;
290

291 292
    /* The number of bits used to encode pass data lengths. */
    int numlenbits;
293

294 295
    /* The first pass number containing data for this code block. */
    int firstpassno;
296

297 298
    /* The MQ decoder. */
    jpc_mqdec_t *mqdec;
299

300 301
    /* The raw bit stream decoder. */
    jpc_bitstream_t *nulldec;
302

303 304
    /* The per-sample state information for this code block. */
    jas_matrix_t *flags;
305

306 307
    /* The sample data associated with this code block. */
    jas_matrix_t *data;
308 309 310 311 312 313 314

} jpc_dec_cblk_t;

/* Decoder per-code-block-group state information. */

typedef struct {

315 316
    /* The x-coordinate of the top-left corner of the precinct. */
    uint_fast32_t xstart;
317

318 319
    /* The y-coordinate of the top-left corner of the precinct. */
    uint_fast32_t ystart;
320

321 322 323
    /* The x-coordinate of the bottom-right corner of the precinct
      (plus one). */
    uint_fast32_t xend;
324

325 326 327
    /* The y-coordinate of the bottom-right corner of the precinct
      (plus one). */
    uint_fast32_t yend;
328

329 330 331
    /* The number of code blocks spanning this precinct in the horizontal
      direction. */
    int numhcblks;
332

333 334 335
    /* The number of code blocks spanning this precinct in the vertical
      direction. */
    int numvcblks;
336

337 338
    /* The total number of code blocks in this precinct. */
    int numcblks;
339

340 341
    /* The per code block information. */
    jpc_dec_cblk_t *cblks;
342

343 344
    /* The inclusion tag tree. */
    jpc_tagtree_t *incltagtree;
345

346 347
    /* The insignificant MSBs tag tree. */
    jpc_tagtree_t *numimsbstagtree;
348 349 350 351 352 353 354

} jpc_dec_prc_t;

/* Decoder per-band state information. */

typedef struct {

355 356
    /* The per-code-block-group state information. */
    jpc_dec_prc_t *prcs;
357

358 359
    /* The sample data associated with this band. */
    jas_matrix_t *data;
360

361 362
    /* The orientation of this band (i.e., LL, LH, HL, or HH). */
    int orient;
363

364 365
    /* The encoded quantizer step size. */
    int stepsize;
366

367 368
    /* The absolute quantizer step size. */
    jpc_fix_t absstepsize;
369

370 371
    /* The number of bit planes for this band. */
    int numbps;
372

373 374
    /* The analysis gain associated with this band. */
    int analgain;
375

376 377
    /* The ROI shift value for this band. */
    int roishift;
378 379 380 381 382 383 384

} jpc_dec_band_t;

/* Decoder per-resolution-level state information. */

typedef struct {

385 386
    /* The number of bands associated with this resolution level. */
    int numbands;
387

388 389
    /* The per-band information. */
    jpc_dec_band_t *bands;
390

391 392 393
    /* The x-coordinate of the top-left corner of the tile-component
      at this resolution. */
    uint_fast32_t xstart;
394

395 396 397
    /* The y-coordinate of the top-left corner of the tile-component
      at this resolution. */
    uint_fast32_t ystart;
398

399 400 401
    /* The x-coordinate of the bottom-right corner of the tile-component
      at this resolution (plus one). */
    uint_fast32_t xend;
402

403 404 405
    /* The y-coordinate of the bottom-right corner of the tile-component
      at this resolution (plus one). */
    uint_fast32_t yend;
406

407 408 409
    /* The exponent value for the nominal precinct width measured
      relative to the associated LL band. */
    int prcwidthexpn;
410

411 412 413
    /* The exponent value for the nominal precinct height measured
      relative to the associated LL band. */
    int prcheightexpn;
414

415 416
    /* The number of precincts in the horizontal direction. */
    int numhprcs;
417

418 419
    /* The number of precincts in the vertical direction. */
    int numvprcs;
420

421 422
    /* The total number of precincts. */
    int numprcs;
423

424 425 426 427
    /* The exponent value for the nominal code block group width.
      This quantity is associated with the next lower resolution level
      (assuming that there is one). */
    int cbgwidthexpn;
428

429 430 431 432
    /* The exponent value for the nominal code block group height
      This quantity is associated with the next lower resolution level
      (assuming that there is one). */
    int cbgheightexpn;
433

434 435
    /* The exponent value for the code block width. */
    uint_fast16_t cblkwidthexpn;
436

437 438
    /* The exponent value for the code block height. */
    uint_fast16_t cblkheightexpn;
439 440 441 442 443 444 445

} jpc_dec_rlvl_t;

/* Decoder per-tile-component state information. */

typedef struct {

446 447 448
    /* The x-coordinate of the top-left corner of the tile-component
      in the coordinate system of the tile-component. */
    uint_fast32_t xstart;
449

450 451 452
    /* The y-coordinate of the top-left corner of the tile-component
      in the coordinate system of the tile-component. */
    uint_fast32_t ystart;
453

454 455 456
    /* The x-coordinate of the bottom-right corner of the tile-component
      in the coordinate system of the tile-component (plus one). */
    uint_fast32_t xend;
457

458 459 460
    /* The y-coordinate of the bottom-right corner of the tile-component
      in the coordinate system of the tile-component (plus one). */
    uint_fast32_t yend;
461

462 463
    /* The component data for the current tile. */
    jas_matrix_t *data;
464

465 466
    /* The number of resolution levels. */
    int numrlvls;
467

468 469
    /* The per resolution level information. */
    jpc_dec_rlvl_t *rlvls;
470

471 472
    /* The TSFB. */
    jpc_tsfb_t *tsfb;
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488

} jpc_dec_tcomp_t;

/*
 * Tile states.
 */

#define	JPC_TILE_INIT	0
#define	JPC_TILE_ACTIVE	1
#define	JPC_TILE_ACTIVELAST	2
#define	JPC_TILE_DONE	3

/* Decoder per-tile state information. */

typedef struct {

489 490
    /* The processing state for this tile. */
    int state;
491

492 493 494
    /* The x-coordinate of the top-left corner of the tile on the reference
      grid. */
    uint_fast32_t xstart;
495

496 497 498
    /* The y-coordinate of the top-left corner of the tile on the reference
      grid. */
    uint_fast32_t ystart;
499

500 501 502
    /* The x-coordinate of the bottom-right corner of the tile on the
      reference grid (plus one). */
    uint_fast32_t xend;
503

504 505 506
    /* The y-coordinate of the bottom-right corner of the tile on the
      reference grid (plus one). */
    uint_fast32_t yend;
507

508 509
    /* The packed packet header data for this tile. */
    jpc_ppxstab_t *pptstab;
510

511 512
    /* A stream containing the packed packet header data for this tile. */
    jas_stream_t *pkthdrstream;
513

514 515
    /* The current position within the packed packet header stream. */
    long pkthdrstreampos;
516

517 518
    /* The coding parameters for this tile. */
    jpc_dec_cp_t *cp;
519

520 521
    /* The per tile-component information. */
    jpc_dec_tcomp_t *tcomps;
522

523 524
    /* The next expected tile-part number. */
    int partno;
525

526 527
    /* The number of tile-parts. */
    int numparts;
528

529 530
    /* The coding mode. */
    int realmode;
531

532 533
    /* The packet iterator for this tile. */
    jpc_pi_t *pi;
534 535 536 537 538 539 540

} jpc_dec_tile_t;

/* Decoder per-component state information. */

typedef struct {

541 542 543 544 545
    /* The horizontal sampling period. */
    uint_fast32_t hstep;

    /* The vertical sampling period. */
    uint_fast32_t vstep;
546

547 548
    /* The number of samples in the horizontal direction. */
    uint_fast32_t width;
549

550 551
    /* The number of samples in the vertical direction. */
    uint_fast32_t height;
552

553 554
    /* The precision of the sample data. */
    uint_fast16_t prec;
555

556 557
    /* The signedness of the sample data. */
    bool sgnd;
558

559 560
    /* The sample alignment horizontal offset. */
    uint_fast32_t hsubstep;
561

562 563
    /* The sample alignment vertical offset. */
    uint_fast32_t vsubstep;
564 565 566 567 568 569 570

} jpc_dec_cmpt_t;

/* Decoder state information. */

typedef struct {

571 572
    /* The decoded image. */
    jas_image_t *image;
573

574 575 576
    /* The x-coordinate of the top-left corner of the image area on
      the reference grid. */
    uint_fast32_t xstart;
577

578 579 580
    /* The y-coordinate of the top-left corner of the image area on
      the reference grid. */
    uint_fast32_t ystart;
581

582 583 584
    /* The x-coordinate of the bottom-right corner of the image area on
      the reference grid (plus one). */
    uint_fast32_t xend;
585

586 587 588
    /* The y-coordinate of the bottom-right corner of the image area on
      the reference grid (plus one). */
    uint_fast32_t yend;
589

590 591
    /* The nominal tile width in units of the image reference grid. */
    uint_fast32_t tilewidth;
592

593 594
    /* The nominal tile height in units of the image reference grid. */
    uint_fast32_t tileheight;
595

596 597 598
    /* The horizontal offset from the origin of the reference grid to the
      left side of the first tile. */
    uint_fast32_t tilexoff;
599

600 601 602
    /* The vertical offset from the origin of the reference grid to the
      top side of the first tile. */
    uint_fast32_t tileyoff;
603

604 605 606
    /* The number of tiles spanning the image area in the vertical
      direction. */
    int numhtiles;
607

608 609 610
    /* The number of tiles spanning the image area in the horizontal
      direction. */
    int numvtiles;
611

612 613
    /* The total number of tiles. */
    int numtiles;
614

615 616
    /* The per-tile information. */
    jpc_dec_tile_t *tiles;
617

618 619
    /* The tile currently being processed. */
    jpc_dec_tile_t *curtile;
620

621 622
    /* The number of components. */
    int numcomps;
623

624 625
    /* The stream containing the input JPEG-2000 code stream data. */
    jas_stream_t *in;
626

627 628
    /* The default coding parameters for all tiles. */
    jpc_dec_cp_t *cp;
629

630 631
    /* The maximum number of layers that may be decoded. */
    int maxlyrs;
632

633 634
    /* The maximum number of packets that may be decoded. */
    int maxpkts;
635

636 637 638
    /* The number of packets decoded so far in the processing of the entire
      code stream. */
    int numpkts;
639

640 641
    /* The next expected PPM marker segment sequence number. */
    int ppmseqno;
642

643 644
    /* The current state for code stream processing. */
    int state;
645

646 647
    /* The per-component information. */
    jpc_dec_cmpt_t *cmpts;
648

649 650
    /* The information from PPM marker segments. */
    jpc_ppxstab_t *ppmstab;
651

652 653 654
    /* A list of streams containing packet header data from PPM marker
      segments. */
    jpc_streamlist_t *pkthdrstreams;
655

656 657
    /* The expected ending offset for a tile-part. */
    long curtileendoff;
658

659 660
    /* This is required by the tier-2 decoder. */
    jpc_cstate_t *cstate;
661 662 663 664 665 666 667

} jpc_dec_t;

/* Decoder options. */

typedef struct {

668 669
    /* The debug level for the decoder. */
    int debug;
670

671 672
    /* The maximum number of layers to decode. */
    int maxlyrs;
673

674 675
    /* The maximum number of packets to decode. */
    int maxpkts;
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696

} jpc_dec_importopts_t;

/******************************************************************************\
* Functions.
\******************************************************************************/

/* Create a decoder segment object. */
jpc_dec_seg_t *jpc_seg_alloc(void);

/* Destroy a decoder segment object. */
void jpc_seg_destroy(jpc_dec_seg_t *seg);

/* Remove a segment from a segment list. */
void jpc_seglist_remove(jpc_dec_seglist_t *list, jpc_dec_seg_t *node);

/* Insert a segment into a segment list. */
void jpc_seglist_insert(jpc_dec_seglist_t *list, jpc_dec_seg_t *ins,
  jpc_dec_seg_t *node);

#endif