jpc_enc.h 17.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 95 96 97 98 99 100 101 102
 * __END_OF_JASPER_LICENSE__
 */

/*
 * $Id: jpc_enc.h,v 1.2 2008-05-26 09:40:52 vp153 Exp $
 */

#ifndef JPC_ENC_H
#define JPC_ENC_H

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

#include "jasper/jas_seq.h"

#include "jpc_t2cod.h"
#include "jpc_mqenc.h"
#include "jpc_cod.h"
#include "jpc_tagtree.h"
#include "jpc_cs.h"
#include "jpc_flt.h"
#include "jpc_tsfb.h"

/******************************************************************************\
* Constants.
\******************************************************************************/

/* The number of bits used in various lookup tables. */
#define	JPC_NUMEXTRABITS	JPC_NMSEDEC_FRACBITS

/* An invalid R-D slope value. */
#define	JPC_BADRDSLOPE	(-1)

/******************************************************************************\
* Coding parameters types.
\******************************************************************************/

/* Per-component coding paramters. */

typedef struct {

103 104
    /* The horizontal sampling period. */
    uint_fast8_t sampgrdstepx;
105

106 107
    /* The vertical sampling period. */
    uint_fast8_t sampgrdstepy;
108

109 110
    /* The sample alignment horizontal offset. */
    uint_fast8_t sampgrdsubstepx;
111

112 113
    /* The sample alignment vertical offset. */
    uint_fast8_t sampgrdsubstepy;
114

115 116
    /* The precision of the samples. */
    uint_fast8_t prec;
117

118 119
    /* The signedness of the samples. */
    bool sgnd;
120

121 122
    /* The number of step sizes. */
    uint_fast16_t numstepsizes;
123

124 125
    /* The quantizer step sizes. */
    uint_fast16_t stepsizes[JPC_MAXBANDS];
126 127 128 129 130 131 132

} jpc_enc_ccp_t;

/* Per-tile coding parameters. */

typedef struct {

133 134
    /* The coding mode. */
    bool intmode;
135

136 137
    /* The coding style (i.e., SOP, EPH). */
    uint_fast8_t csty;
138

139 140
    /* The progression order. */
    uint_fast8_t prg;
141

142 143
    /* The multicomponent transform. */
    uint_fast8_t mctid;
144

145 146
    /* The number of layers. */
    uint_fast16_t numlyrs;
147

148 149 150
    /* The normalized bit rates associated with the various
      intermediate layers. */
    jpc_fix_t *ilyrrates;
151 152 153 154 155 156 157

} jpc_enc_tcp_t;

/* Per tile-component coding parameters. */

typedef struct {

158 159
    /* The coding style (i.e., explicit precinct sizes). */
    uint_fast8_t csty;
160

161 162
    /* The maximum number of resolution levels allowed. */
    uint_fast8_t maxrlvls;
163

164 165
    /* The exponent for the nominal code block width. */
    uint_fast16_t cblkwidthexpn;
166

167 168
    /* The exponent for the nominal code block height. */
    uint_fast16_t cblkheightexpn;
169

170 171 172
    /* The code block style parameters (e.g., lazy, terminate all,
      segmentation symbols, causal, reset probability models). */
    uint_fast8_t cblksty;
173

174 175
    /* The QMFB. */
    uint_fast8_t qmfbid;
176

177 178
    /* The precinct width values. */
    uint_fast16_t prcwidthexpns[JPC_MAXRLVLS];
179

180 181
    /* The precinct height values. */
    uint_fast16_t prcheightexpns[JPC_MAXRLVLS];
182

183 184
    /* The number of guard bits. */
    uint_fast8_t numgbits;
185 186 187 188 189 190 191

} jpc_enc_tccp_t;

/* Coding parameters. */

typedef struct {

192 193
    /* The debug level. */
    int debug;
194

195 196 197
    /* The horizontal offset from the origin of the reference grid to the
      left edge of the image area. */
    uint_fast32_t imgareatlx;
198

199 200 201
    /* The vertical offset from the origin of the reference grid to the
      top edge of the image area. */
    uint_fast32_t imgareatly;
202

203 204 205
    /* The horizontal offset from the origin of the reference grid to the
      right edge of the image area (plus one). */
    uint_fast32_t refgrdwidth;
206

207 208 209
    /* The vertical offset from the origin of the reference grid to the
      bottom edge of the image area (plus one). */
    uint_fast32_t refgrdheight;
210

211 212 213
    /* The horizontal offset from the origin of the tile grid to the
      origin of the reference grid. */
    uint_fast32_t tilegrdoffx;
214

215 216 217
    /* The vertical offset from the origin of the tile grid to the
      origin of the reference grid. */
    uint_fast32_t tilegrdoffy;
218

219 220
    /* The nominal tile width in units of the image reference grid. */
    uint_fast32_t tilewidth;
221

222 223
    /* The nominal tile height in units of the image reference grid. */
    uint_fast32_t tileheight;
224

225 226 227
    /* The number of tiles spanning the image area in the horizontal
      direction. */
    uint_fast32_t numhtiles;
228

229 230 231
    /* The number of tiles spanning the image area in the vertical
      direction. */
    uint_fast32_t numvtiles;
232

233 234
    /* The number of tiles. */
    uint_fast32_t numtiles;
235

236 237
    /* The number of components. */
    uint_fast16_t numcmpts;
238

239 240
    /* The per-component coding parameters. */
    jpc_enc_ccp_t *ccps;
241

242 243
    /* The per-tile coding parameters. */
    jpc_enc_tcp_t tcp;
244

245 246
    /* The per-tile-component coding parameters. */
    jpc_enc_tccp_t tccp;
247

248 249
    /* The target code stream length in bytes. */
    uint_fast32_t totalsize;
250

251 252
    /* The raw (i.e., uncompressed) size of the image in bytes. */
    uint_fast32_t rawsize;
253 254 255 256 257 258 259 260 261 262 263

} jpc_enc_cp_t;

/******************************************************************************\
* Encoder class.
\******************************************************************************/

/* Encoder per-coding-pass state information. */

typedef struct {

264 265
    /* The starting offset for this pass. */
    int start;
266

267 268
    /* The ending offset for this pass. */
    int end;
269

270 271
    /* The type of data in this pass (i.e., MQ or raw). */
    int type;
272

273 274
    /* Flag indicating that this pass is terminated. */
    int term;
275

276 277
    /* The entropy coder state after coding this pass. */
    jpc_mqencstate_t mqencstate;
278

279 280
    /* The layer to which this pass has been assigned. */
    int lyrno;
281

282 283
    /* The R-D slope for this pass. */
    jpc_flt_t rdslope;
284

285 286
    /* The weighted MSE reduction associated with this pass. */
    jpc_flt_t wmsedec;
287

288 289
    /* The cumulative weighted MSE reduction. */
    jpc_flt_t cumwmsedec;
290

291 292
    /* The normalized MSE reduction. */
    long nmsedec;
293 294 295 296 297 298 299

} jpc_enc_pass_t;

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

typedef struct {

300 301
    /* The number of passes. */
    int numpasses;
302

303 304
    /* The per-pass information. */
    jpc_enc_pass_t *passes;
305

306 307
    /* The number of passes encoded so far. */
    int numencpasses;
308

309 310
    /* The number of insignificant MSBs. */
    int numimsbs;
311

312 313
    /* The number of bits used to encode pass data lengths. */
    int numlenbits;
314

315 316
    /* The byte stream for this code block. */
    jas_stream_t *stream;
317

318 319
    /* The entropy encoder. */
    jpc_mqenc_t *mqenc;
320

321 322
    /* The data for this code block. */
    jas_matrix_t *data;
323

324 325
    /* The state for this code block. */
    jas_matrix_t *flags;
326

327 328
    /* The number of bit planes required for this code block. */
    int numbps;
329

330 331
    /* The next pass to be encoded. */
    jpc_enc_pass_t *curpass;
332

333 334
    /* The per-code-block-group state information. */
    struct jpc_enc_prc_s *prc;
335

336 337 338
    /* The saved current pass. */
    /* This is used by the rate control code. */
    jpc_enc_pass_t *savedcurpass;
339

340 341 342
    /* The saved length indicator size. */
    /* This is used by the rate control code. */
    int savednumlenbits;
343

344 345 346
    /* The saved number of encoded passes. */
    /* This is used by the rate control code. */
    int savednumencpasses;
347 348 349 350 351 352 353

} jpc_enc_cblk_t;

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

typedef struct jpc_enc_prc_s {

354 355
    /* The x-coordinate of the top-left corner of the precinct. */
    uint_fast32_t tlx;
356

357 358
    /* The y-coordinate of the top-left corner of the precinct. */
    uint_fast32_t tly;
359

360 361 362
    /* The x-coordinate of the bottom-right corner of the precinct
      (plus one). */
    uint_fast32_t brx;
363

364 365 366
    /* The y-coordinate of the bottom-right corner of the precinct
      (plus one). */
    uint_fast32_t bry;
367

368 369 370
    /* The number of code blocks spanning the precinct in the horizontal
    direction. */
    int numhcblks;
371

372 373 374
    /* The number of code blocks spanning the precinct in the vertical
    direction. */
    int numvcblks;
375

376 377
    /* The total number of code blocks. */
    int numcblks;
378

379 380
    /* The per-code-block information. */
    jpc_enc_cblk_t *cblks;
381

382 383
    /* The inclusion tag tree. */
    jpc_tagtree_t *incltree;
384

385 386
    /* The insignifcant MSBs tag tree. */
    jpc_tagtree_t *nlibtree;
387

388 389
    /* The per-band information. */
    struct jpc_enc_band_s *band;
390

391 392 393
    /* The saved inclusion tag tree. */
    /* This is used by rate control. */
    jpc_tagtree_t *savincltree;
394

395 396 397
    /* The saved leading-insignificant-bit-planes tag tree. */
    /* This is used by rate control. */
    jpc_tagtree_t *savnlibtree;
398 399 400 401 402 403 404

} jpc_enc_prc_t;

/* Encoder per-band state information. */

typedef struct jpc_enc_band_s {

405 406
    /* The per precinct information. */
    jpc_enc_prc_t *prcs;
407

408 409
    /* The coefficient data for this band. */
    jas_matrix_t *data;
410

411 412
    /* The orientation of this band (i.e., LL, LH, HL, or HH). */
    int orient;
413

414 415
    /* The number of bit planes associated with this band. */
    int numbps;
416

417 418
    /* The quantizer step size. */
    jpc_fix_t absstepsize;
419

420 421
    /* The encoded quantizer step size. */
    int stepsize;
422

423 424 425
    /* The L2 norm of the synthesis basis functions associated with
      this band.  (The MCT is not considered in this value.) */
    jpc_fix_t synweight;
426

427 428
    /* The analysis gain for this band. */
    int analgain;
429

430 431
    /* The per-resolution-level information. */
    struct jpc_enc_rlvl_s *rlvl;
432 433 434 435 436 437 438

} jpc_enc_band_t;

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

typedef struct jpc_enc_rlvl_s {

439 440 441
    /* The x-coordinate of the top-left corner of the tile-component
      at this resolution. */
    uint_fast32_t tlx;
442

443 444 445
    /* The y-coordinate of the top-left corner of the tile-component
      at this resolution. */
    uint_fast32_t tly;
446

447 448 449
    /* The x-coordinate of the bottom-right corner of the tile-component
      at this resolution (plus one). */
    uint_fast32_t brx;
450

451 452 453
    /* The y-coordinate of the bottom-right corner of the tile-component
      at this resolution (plus one). */
    uint_fast32_t bry;
454

455 456 457
    /* The exponent value for the nominal precinct width measured
      relative to the associated LL band. */
    int prcwidthexpn;
458

459 460 461
    /* The exponent value for the nominal precinct height measured
      relative to the associated LL band. */
    int prcheightexpn;
462

463 464 465
    /* The number of precincts spanning the resolution level in the
      horizontal direction. */
    int numhprcs;
466

467 468 469
    /* The number of precincts spanning the resolution level in the
      vertical direction. */
    int numvprcs;
470

471 472
    /* The total number of precincts. */
    int numprcs;
473

474 475 476 477
    /* 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;
478

479 480 481 482
    /* 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;
483

484 485
    /* The exponent value for the code block width. */
    uint_fast16_t cblkwidthexpn;
486

487 488
    /* The exponent value for the code block height. */
    uint_fast16_t cblkheightexpn;
489

490 491
    /* The number of bands associated with this resolution level. */
    int numbands;
492

493 494
    /* The per-band information. */
    jpc_enc_band_t *bands;
495

496 497
    /* The parent tile-component. */
    struct jpc_enc_tcmpt_s *tcmpt;
498 499 500 501 502 503 504

} jpc_enc_rlvl_t;

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

typedef struct jpc_enc_tcmpt_s {

505 506
    /* The number of resolution levels. */
    int numrlvls;
507

508 509
    /* The per-resolution-level information. */
    jpc_enc_rlvl_t *rlvls;
510

511 512
    /* The tile-component data. */
    jas_matrix_t *data;
513

514 515
    /* The QMFB. */
    int qmfbid;
516

517 518
    /* The number of bands. */
    int numbands;
519

520 521
    /* The TSFB. */
    jpc_tsfb_t *tsfb;
522

523 524
    /* The synthesis energy weight (for the MCT). */
    jpc_fix_t synweight;
525

526 527
    /* The precinct width exponents. */
    int prcwidthexpns[JPC_MAXRLVLS];
528

529 530
    /* The precinct height exponents. */
    int prcheightexpns[JPC_MAXRLVLS];
531

532 533
    /* The code block width exponent. */
    int cblkwidthexpn;
534

535 536
    /* The code block height exponent. */
    int cblkheightexpn;
537

538 539
    /* Coding style (i.e., explicit precinct sizes). */
    int csty;
540

541 542
    /* Code block style. */
    int cblksty;
543

544 545
    /* The number of quantizer step sizes. */
    int numstepsizes;
546

547 548
    /* The encoded quantizer step sizes. */
    uint_fast16_t stepsizes[JPC_MAXBANDS];
549

550 551
    /* The parent tile. */
    struct jpc_enc_tile_s *tile;
552 553 554 555 556 557 558

} jpc_enc_tcmpt_t;

/* Encoder per-tile state information. */

typedef struct jpc_enc_tile_s {

559 560
    /* The tile number. */
    uint_fast32_t tileno;
561

562 563 564
    /* The x-coordinate of the top-left corner of the tile measured with
      respect to the reference grid. */
    uint_fast32_t tlx;
565

566 567 568
    /* The y-coordinate of the top-left corner of the tile measured with
      respect to the reference grid. */
    uint_fast32_t tly;
569

570 571 572
    /* The x-coordinate of the bottom-right corner of the tile measured
      with respect to the reference grid (plus one). */
    uint_fast32_t brx;
573

574 575 576
    /* The y-coordinate of the bottom-right corner of the tile measured
      with respect to the reference grid (plus one). */
    uint_fast32_t bry;
577

578 579
    /* The coding style. */
    uint_fast8_t csty;
580

581 582
    /* The progression order. */
    uint_fast8_t prg;
583

584 585
    /* The number of layers. */
    int numlyrs;
586

587 588
    /* The MCT to employ (if any). */
    uint_fast8_t mctid;
589

590 591 592
    /* The packet iterator (used to determine the order of packet
      generation). */
    jpc_pi_t *pi;
593

594 595
    /* The coding mode (i.e., integer or real). */
    bool intmode;
596

597 598
    /* The number of bytes to allocate to the various layers. */
    uint_fast32_t *lyrsizes;
599

600 601
    /* The number of tile-components. */
    int numtcmpts;
602

603 604
    /* The per tile-component information. */
    jpc_enc_tcmpt_t *tcmpts;
605

606 607
    /* The raw (i.e., uncompressed) size of this tile. */
    uint_fast32_t rawsize;
608 609 610 611 612 613 614

} jpc_enc_tile_t;

/* Encoder class. */

typedef struct jpc_enc_s {

615 616
    /* The image being encoded. */
    jas_image_t *image;
617

618 619
    /* The output stream. */
    jas_stream_t *out;
620

621 622
    /* The coding parameters. */
    jpc_enc_cp_t *cp;
623

624 625
    /* The tile currently being processed. */
    jpc_enc_tile_t *curtile;
626

627 628
    /* The code stream state. */
    jpc_cstate_t *cstate;
629

630 631
    /* The number of bytes output so far. */
    uint_fast32_t len;
632

633 634 635
    /* The number of bytes available for the main body of the code stream. */
    /* This is used for rate allocation purposes. */
    uint_fast32_t mainbodysize;
636

637 638 639
    /* The marker segment currently being processed. */
    /* This member is a convenience for making cleanup easier. */
    jpc_ms_t *mrk;
640

641 642
    /* The stream used to temporarily hold tile-part data. */
    jas_stream_t *tmpstream;
643 644 645 646

} jpc_enc_t;

#endif