Lines Matching refs:p_ht
1028 S32 hme_derive_num_layers(S32 n_enc_layers, S32 *p_wd, S32 *p_ht, S32 *p_disp_wd, S32 *p_disp_ht) in hme_derive_num_layers() argument
1037 ASSERT(p_ht[0] <= HME_MAX_HEIGHT); in hme_derive_num_layers()
1040 p_disp_ht[0] = p_ht[0]; in hme_derive_num_layers()
1054 ht1 = FLOOR16(p_ht[i - 1] >> 1); in hme_derive_num_layers()
1055 ht2 = CEIL16((p_ht[i - 1] * 3) >> 2); in hme_derive_num_layers()
1056 ASSERT(p_ht[i] >= ht1); in hme_derive_num_layers()
1057 ASSERT(p_ht[i] <= ht2); in hme_derive_num_layers()
1060 ASSERT(p_ht[n_enc_layers - 1] >= 2 * MIN_HT_COARSE); in hme_derive_num_layers()
1064 if((p_wd[i - 1] < 2 * MIN_WD_COARSE) || (p_ht[i - 1] < 2 * MIN_HT_COARSE)) in hme_derive_num_layers()
1071 p_ht[i] = CEIL16(p_ht[i - 1] >> 1); in hme_derive_num_layers()
2859 void hme_set_resolution(void *pv_me_ctxt, S32 n_enc_layers, S32 *p_wd, S32 *p_ht, S32 me_frm_id) in hme_set_resolution() argument
2868 memcpy(a_ht, p_ht, n_enc_layers * sizeof(S32)); in hme_set_resolution()
2931 void hme_coarse_set_resolution(void *pv_me_ctxt, S32 n_enc_layers, S32 *p_wd, S32 *p_ht) in hme_coarse_set_resolution() argument
2938 memcpy(a_ht, p_ht, n_enc_layers * sizeof(S32)); in hme_coarse_set_resolution()