Searched refs:tsfb (Results 1 – 6 of 6) sorted by relevance
/external/opencv3/3rdparty/libjasper/ |
D | jpc_tsfb.c | 85 void jpc_tsfb_getbands2(jpc_tsfb_t *tsfb, int locxstart, int locystart, 95 jpc_tsfb_t *tsfb; in jpc_cod_gettsfb() local 97 if (!(tsfb = malloc(sizeof(jpc_tsfb_t)))) in jpc_cod_gettsfb() 103 tsfb->qmfb = &jpc_ns_qmfb2d; in jpc_cod_gettsfb() 107 tsfb->qmfb = &jpc_ft_qmfb2d; in jpc_cod_gettsfb() 111 tsfb->qmfb = 0; in jpc_cod_gettsfb() 113 tsfb->numlvls = numlvls; in jpc_cod_gettsfb() 114 return tsfb; in jpc_cod_gettsfb() 117 void jpc_tsfb_destroy(jpc_tsfb_t *tsfb) in jpc_tsfb_destroy() argument 119 free(tsfb); in jpc_tsfb_destroy() [all …]
|
D | jpc_tsfb.h | 125 void jpc_tsfb_destroy(jpc_tsfb_t *tsfb); 128 int jpc_tsfb_analyze(jpc_tsfb_t *tsfb, jas_seq2d_t *x); 131 int jpc_tsfb_synthesize(jpc_tsfb_t *tsfb, jas_seq2d_t *x); 134 int jpc_tsfb_getbands(jpc_tsfb_t *tsfb, uint_fast32_t xstart,
|
D | jpc_enc.c | 903 jpc_tsfb_t *tsfb; in jpc_enc_encodemainhdr() local 992 tsfb = jpc_cod_gettsfb(tccp->qmfbid, tccp->maxrlvls - 1); in jpc_enc_encodemainhdr() 993 jpc_tsfb_getbands(tsfb, 0, 0, 1 << tccp->maxrlvls, 1 << tccp->maxrlvls, in jpc_enc_encodemainhdr() 995 jpc_tsfb_destroy(tsfb); in jpc_enc_encodemainhdr() 1190 jpc_tsfb_analyze(comp->tsfb, comp->data); in jpc_enc_encodemainbody() 1974 tcmpt->tsfb = 0; in jpc_enc_tile_create() 2057 tcmpt->tsfb = 0; in tcmpt_create() 2090 if (!(tcmpt->tsfb = jpc_cod_gettsfb(tcmpt->qmfbid, tcmpt->numrlvls - 1))) { in tcmpt_create() 2109 jpc_tsfb_getbands(tcmpt->tsfb, jas_seq2d_xstart(tcmpt->data), in tcmpt_create() 2153 if (tcmpt->tsfb) { in tcmpt_destroy() [all …]
|
D | jpc_enc.h | 521 jpc_tsfb_t *tsfb; member
|
D | jpc_dec.h | 472 jpc_tsfb_t *tsfb; member
|
D | jpc_dec.c | 705 if (!(tcomp->tsfb = jpc_cod_gettsfb(ccp->qmfbid, in jpc_dec_tileinit() 710 …jpc_tsfb_getbands(tcomp->tsfb, jas_seq2d_xstart(tcomp->data), jas_seq2d_ystart(tcomp->data), jas_s… in jpc_dec_tileinit() 985 if (tcomp->tsfb) { in jpc_dec_tilefini() 986 jpc_tsfb_destroy(tcomp->tsfb); in jpc_dec_tilefini() 1065 jpc_tsfb_synthesize(tcomp->tsfb, tcomp->data); in jpc_dec_tiledecode() 1243 tcomp->tsfb = 0; in jpc_dec_process_siz()
|