Home | History | Annotate | Download | only in libjasper

Lines Matching full:bpcc

152     {JP2_BOX_BPCC, "BPCC", 0,
226 jp2_bpcc_t *bpcc = &box->data.bpcc;
227 if (bpcc->bpcs) {
228 jas_free(bpcc->bpcs);
229 bpcc->bpcs = 0;
380 jp2_bpcc_t *bpcc = &box->data.bpcc;
382 bpcc->numcmpts = box->datalen;
383 if (!(bpcc->bpcs = jas_alloc2(bpcc->numcmpts, sizeof(uint_fast8_t)))) {
386 for (i = 0; i < bpcc->numcmpts; ++i) {
387 if (jp2_getuint8(in, &bpcc->bpcs[i])) {
570 jp2_bpcc_t *bpcc = &box->data.bpcc;
572 for (i = 0; i < bpcc->numcmpts; ++i) {
573 if (jp2_putuint8(out, bpcc->bpcs[i])) {