/external/opencv3/3rdparty/libjasper/ |
jpc_t2dec.c | 160 jpc_dec_tcomp_t *tcomp; local 236 tcomp = &tile->tcomps[compno]; 237 rlvl = &tcomp->rlvls[rlvlno]; 370 tcomp = &tile->tcomps[compno]; 371 rlvl = &tcomp->rlvls[rlvlno]; 470 jpc_dec_tcomp_t *tcomp; local 490 for (compno = 0, tcomp = tile->tcomps, picomp = pi->picomps; 491 compno < pi->numcomps; ++compno, ++tcomp, ++picomp) { 492 picomp->numrlvls = tcomp->numrlvls; 502 for (rlvlno = 0, pirlvl = picomp->pirlvls, rlvl = tcomp->rlvls [all...] |
jpc_dec.c | 639 jpc_dec_tcomp_t *tcomp; local 688 for (compno = 0, tcomp = tile->tcomps, cmpt = dec->cmpts; compno < 689 dec->numcomps; ++compno, ++tcomp, ++cmpt) { 694 tcomp->numrlvls = ccp->numrlvls; 695 if (!(tcomp->rlvls = jas_alloc2(tcomp->numrlvls, 699 if (!(tcomp->data = jas_seq2d_create(JPC_CEILDIV(tile->xstart, 705 if (!(tcomp->tsfb = jpc_cod_gettsfb(ccp->qmfbid, 706 tcomp->numrlvls - 1))) { 710 jpc_tsfb_getbands(tcomp->tsfb, jas_seq2d_xstart(tcomp->data), jas_seq2d_ystart(tcomp->data), jas_seq2d_xend(tcomp->data), (…) 911 jpc_dec_tcomp_t *tcomp; local 1020 jpc_dec_tcomp_t *tcomp; local 1166 jpc_dec_tcomp_t *tcomp; local 1987 jpc_dec_tcomp_t *tcomp; local [all...] |
jpc_t2enc.c | 557 jpc_enc_tcmpt_t *tcomp; local 577 for (compno = 0, tcomp = tile->tcmpts, picomp = pi->picomps; 578 compno < pi->numcomps; ++compno, ++tcomp, ++picomp) { 579 picomp->numrlvls = tcomp->numrlvls; 589 for (rlvlno = 0, pirlvl = picomp->pirlvls, rlvl = tcomp->rlvls; 606 for (compno = 0, tcomp = tile->tcmpts, picomp = pi->picomps; 607 compno < pi->numcomps; ++compno, ++tcomp, ++picomp) { 610 for (rlvlno = 0, pirlvl = picomp->pirlvls, rlvl = tcomp->rlvls; 620 if (pi->maxrlvls < tcomp->numrlvls) { 621 pi->maxrlvls = tcomp->numrlvls [all...] |
jpc_t1dec.c | 92 static int jpc_dec_decodecblk(jpc_dec_t *dec, jpc_dec_tile_t *tile, jpc_dec_tcomp_t *tcomp, jpc_dec_band_t *band, 145 jpc_dec_tcomp_t *tcomp; local 156 for (compcnt = dec->numcomps, tcomp = tile->tcomps; compcnt > 0; 157 --compcnt, ++tcomp) { 158 for (rlvlcnt = tcomp->numrlvls, rlvl = tcomp->rlvls; 176 if (jpc_dec_decodecblk(dec, tile, tcomp, 190 static int jpc_dec_decodecblk(jpc_dec_t *dec, jpc_dec_tile_t *tile, jpc_dec_tcomp_t *tcomp, jpc_dec_band_t *band, 203 compno = tcomp - tile->tcomps;
|