• Home
  • Raw
  • Download

Lines Matching refs:codsty

128     Jpeg2000CodingStyle codsty;  member
329 Jpeg2000CodingStyle *codsty = &s->codsty; in put_cod() local
351 bytestream_put_byte(&s->buf, codsty->nreslevels - 1); // num of decomp. levels in put_cod()
352 bytestream_put_byte(&s->buf, codsty->log2_cblk_width-2); // cblk width in put_cod()
353 bytestream_put_byte(&s->buf, codsty->log2_cblk_height-2); // cblk height in put_cod()
355 bytestream_put_byte(&s->buf, codsty->transform == FF_DWT53); // transformation in put_cod()
362 Jpeg2000CodingStyle *codsty = &s->codsty; in put_qcd() local
366 size = 4 + 3 * (codsty->nreslevels-1); in put_qcd()
368 size = 5 + 6 * (codsty->nreslevels-1); in put_qcd()
377 for (i = 0; i < codsty->nreslevels * 3 - 2; i++) in put_qcd()
380 for (i = 0; i < codsty->nreslevels * 3 - 2; i++) in put_qcd()
456 Jpeg2000CodingStyle *codsty = &s->codsty; in init_tiles() local
491 codsty, in init_tiles()
553 Jpeg2000CodingStyle *codsty = &s->codsty; in init_quantization() local
557 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){ in init_quantization()
558 int nbands, lev = codsty->nreslevels - reslevelno - 1; in init_quantization()
563 if (codsty->transform == FF_DWT97_INT){ in init_quantization()
939 Jpeg2000CodingStyle *codsty = &s->codsty; in encode_packets() local
958 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){ in encode_packets()
972 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){ in encode_packets()
987 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) { in encode_packets()
993 if (reslevelno < codsty->nreslevels) { in encode_packets()
994 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r in encode_packets()
1007 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r in encode_packets()
1052 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) { in encode_packets()
1053 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r in encode_packets()
1072 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) { in encode_packets()
1075 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r in encode_packets()
1120 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) { in encode_packets()
1121 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r in encode_packets()
1135 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) { in encode_packets()
1139 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r in encode_packets()
1190 for (resno = 0; resno < s->codsty.nreslevels; resno++) { in makelayer()
1274 Jpeg2000CodingStyle *codsty = &s->codsty; in makelayers() local
1279 …for (reslevelno = 0, lev = codsty->nreslevels-1; reslevelno < codsty->nreslevels; reslevelno++, le… in makelayers()
1371 Jpeg2000CodingStyle *codsty = &s->codsty; in truncpasses() local
1376 …for (reslevelno = 0, lev = codsty->nreslevels-1; reslevelno < codsty->nreslevels; reslevelno++, le… in truncpasses()
1389 …(int64_t)dwt_norms[codsty->transform == FF_DWT53][bandpos][lev] * (int64_t)band->i_stepsize >> 15); in truncpasses()
1406 Jpeg2000CodingStyle *codsty = &s->codsty; in encode_tile() local
1410 t1.stride = (1<<codsty->log2_cblk_width) + 2; in encode_tile()
1417 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){ in encode_tile()
1445 if (codsty->transform == FF_DWT53){ in encode_tile()
1469 bandpos, codsty->nreslevels - reslevelno - 1); in encode_tile()
1496 Jpeg2000CodingStyle *codsty = &s->codsty; in cleanup() local
1504 ff_jpeg2000_cleanup(comp, codsty); in cleanup()
1519 ff_jpeg2000_reinit(tile->comp + compno, &s->codsty); in reinit()
1718 Jpeg2000CodingStyle *codsty = &s->codsty; in j2kenc_init() local
1745 memset(codsty->log2_prec_widths , 15, sizeof(codsty->log2_prec_widths )); in j2kenc_init()
1746 memset(codsty->log2_prec_heights, 15, sizeof(codsty->log2_prec_heights)); in j2kenc_init()
1747 codsty->nreslevels2decode= in j2kenc_init()
1748 codsty->nreslevels = 7; in j2kenc_init()
1749 codsty->nlayers = s->nlayers; in j2kenc_init()
1750 codsty->log2_cblk_width = 4; in j2kenc_init()
1751 codsty->log2_cblk_height = 4; in j2kenc_init()
1752 codsty->transform = s->pred ? FF_DWT53 : FF_DWT97_INT; in j2kenc_init()
1761 if (codsty->transform == FF_DWT53) in j2kenc_init()