Lines Matching refs:orient
489 OPJ_UINT32 opj_dwt_getgain(OPJ_UINT32 orient) { in opj_dwt_getgain() argument
490 if (orient == 0) in opj_dwt_getgain()
492 if (orient == 1 || orient == 2) in opj_dwt_getgain()
500 OPJ_FLOAT64 opj_dwt_getnorm(OPJ_UINT32 level, OPJ_UINT32 orient) { in opj_dwt_getnorm() argument
501 return opj_dwt_norms[orient][level]; in opj_dwt_getnorm()
515 OPJ_UINT32 opj_dwt_getgain_real(OPJ_UINT32 orient) { in opj_dwt_getgain_real() argument
516 (void)orient; in opj_dwt_getgain_real()
523 OPJ_FLOAT64 opj_dwt_getnorm_real(OPJ_UINT32 level, OPJ_UINT32 orient) { in opj_dwt_getnorm_real() argument
524 return opj_dwt_norms_real[orient][level]; in opj_dwt_getnorm_real()
532 OPJ_UINT32 resno, level, orient, gain; in opj_dwt_calc_explicit_stepsizes() local
535 orient = (bandno == 0) ? 0 : ((bandno - 1) % 3 + 1); in opj_dwt_calc_explicit_stepsizes()
537 gain = (tccp->qmfbid == 0) ? 0 : ((orient == 0) ? 0 : (((orient == 1) || (orient == 2)) ? 1 : 2)); in opj_dwt_calc_explicit_stepsizes()
541 OPJ_FLOAT64 norm = opj_dwt_norms_real[orient][level]; in opj_dwt_calc_explicit_stepsizes()