• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching defs:codsty

80     Jpeg2000CodingStyle codsty;
262 Jpeg2000CodingStyle *codsty = &s->codsty;
279 bytestream_put_byte(&s->buf, codsty->nreslevels - 1); // num of decomp. levels
280 bytestream_put_byte(&s->buf, codsty->log2_cblk_width-2); // cblk width
281 bytestream_put_byte(&s->buf, codsty->log2_cblk_height-2); // cblk height
283 bytestream_put_byte(&s->buf, codsty->transform == FF_DWT53); // transformation
290 Jpeg2000CodingStyle *codsty = &s->codsty;
294 size = 4 + 3 * (codsty->nreslevels-1);
296 size = 5 + 6 * (codsty->nreslevels-1);
305 for (i = 0; i < codsty->nreslevels * 3 - 2; i++)
308 for (i = 0; i < codsty->nreslevels * 3 - 2; i++)
340 Jpeg2000CodingStyle *codsty = &s->codsty;
370 codsty,
425 Jpeg2000CodingStyle *codsty = &s->codsty;
429 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
430 int nbands, lev = codsty->nreslevels - reslevelno - 1;
435 if (codsty->transform == FF_DWT97_INT){
746 Jpeg2000CodingStyle *codsty = &s->codsty;
751 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
787 Jpeg2000CodingStyle *codsty = &s->codsty;
792 for (reslevelno = 0, lev = codsty->nreslevels-1; reslevelno < codsty->nreslevels; reslevelno++, lev--){
805 (int64_t)dwt_norms[codsty->transform == FF_DWT53][bandpos][lev] * (int64_t)band->i_stepsize >> 15);
817 Jpeg2000CodingStyle *codsty = &s->codsty;
826 for (reslevelno = 0; reslevelno < codsty->nreslevels; reslevelno++){
854 if (codsty->transform == FF_DWT53){
872 bandpos, codsty->nreslevels - reslevelno - 1);
895 Jpeg2000CodingStyle *codsty = &s->codsty;
900 ff_jpeg2000_cleanup(comp, codsty);
913 ff_jpeg2000_reinit(tile->comp + compno, &s->codsty);
974 Jpeg2000CodingStyle *codsty = &s->codsty;
982 memset(codsty->log2_prec_widths , 15, sizeof(codsty->log2_prec_widths ));
983 memset(codsty->log2_prec_heights, 15, sizeof(codsty->log2_prec_heights));
984 codsty->nreslevels2decode=
985 codsty->nreslevels = 7;
986 codsty->log2_cblk_width = 4;
987 codsty->log2_cblk_height = 4;
988 codsty->transform = avctx->prediction_method ? FF_DWT53 : FF_DWT97_INT;
995 if (codsty->transform == FF_DWT53)