Lines Matching defs:codsty

131     Jpeg2000CodingStyle codsty;
330 Jpeg2000CodingStyle *codsty = &s->codsty;
352 bytestream_put_byte(&s->buf, codsty->nreslevels - 1); // num of decomp. levels
353 bytestream_put_byte(&s->buf, codsty->log2_cblk_width-2); // cblk width
354 bytestream_put_byte(&s->buf, codsty->log2_cblk_height-2); // cblk height
356 bytestream_put_byte(&s->buf, codsty->transform == FF_DWT53); // transformation
363 Jpeg2000CodingStyle *codsty = &s->codsty;
367 size = 4 + 3 * (codsty->nreslevels-1);
369 size = 5 + 6 * (codsty->nreslevels-1);
378 for (i = 0; i < codsty->nreslevels * 3 - 2; i++)
381 for (i = 0; i < codsty->nreslevels * 3 - 2; i++)
457 Jpeg2000CodingStyle *codsty = &s->codsty;
492 codsty,
554 Jpeg2000CodingStyle *codsty = &s->codsty;
558 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
559 int nbands, lev = codsty->nreslevels - reslevelno - 1;
564 if (codsty->transform == FF_DWT97_INT){
940 Jpeg2000CodingStyle *codsty = &s->codsty;
959 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
973 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
988 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
994 if (reslevelno < codsty->nreslevels) {
995 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
1008 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
1053 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
1054 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
1073 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
1076 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
1121 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
1122 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
1136 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++) {
1140 uint8_t reducedresno = codsty->nreslevels - 1 -reslevelno; // ==> N_L - r
1191 for (resno = 0; resno < s->codsty.nreslevels; resno++) {
1274 Jpeg2000CodingStyle *codsty = &s->codsty;
1279 for (reslevelno = 0, lev = codsty->nreslevels-1; reslevelno < codsty->nreslevels; reslevelno++, lev--){
1370 Jpeg2000CodingStyle *codsty = &s->codsty;
1375 for (reslevelno = 0, lev = codsty->nreslevels-1; reslevelno < codsty->nreslevels; reslevelno++, lev--){
1388 (int64_t)dwt_norms[codsty->transform == FF_DWT53][bandpos][lev] * (int64_t)band->i_stepsize >> 15);
1405 Jpeg2000CodingStyle *codsty = &s->codsty;
1409 t1.stride = (1<<codsty->log2_cblk_width) + 2;
1416 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
1444 if (codsty->transform == FF_DWT53){
1468 bandpos, codsty->nreslevels - reslevelno - 1);
1495 Jpeg2000CodingStyle *codsty = &s->codsty;
1503 ff_jpeg2000_cleanup(comp, codsty);
1518 ff_jpeg2000_reinit(tile->comp + compno, &s->codsty);
1718 Jpeg2000CodingStyle *codsty = &s->codsty;
1739 memset(codsty->log2_prec_widths , 15, sizeof(codsty->log2_prec_widths ));
1740 memset(codsty->log2_prec_heights, 15, sizeof(codsty->log2_prec_heights));
1741 codsty->nreslevels2decode=
1742 codsty->nreslevels = 7;
1743 codsty->nlayers = s->nlayers;
1744 codsty->log2_cblk_width = 4;
1745 codsty->log2_cblk_height = 4;
1746 codsty->transform = s->pred ? FF_DWT53 : FF_DWT97_INT;
1755 if (codsty->transform == FF_DWT53)