Searched refs:p_wd (Results 1 – 6 of 6) sorted by relevance
/external/libhevc/encoder/ |
D | hme_interface.h | 976 void hme_set_resolution(void *pv_me_ctxt, S32 n_enc_layers, S32 *p_wd, S32 *p_ht, S32 me_frm_id); 978 void hme_coarse_set_resolution(void *pv_me_ctxt, S32 n_enc_layers, S32 *p_wd, S32 *p_ht); 1033 S32 hme_derive_num_layers(S32 n_enc_layers, S32 *p_wd, S32 *p_ht, S32 *p_disp_wd, S32 *p_disp_ht);
|
D | ihevce_coarse_me_pass.h | 211 void *pv_me_ctxt, WORD32 n_enc_layers, WORD32 *p_wd, WORD32 *p_ht);
|
D | ihevce_me_pass.h | 167 void ihevce_me_set_resolution(void *pv_me_ctxt, WORD32 n_enc_layers, WORD32 *p_wd, WORD32 *p_ht);
|
D | hme_interface.c | 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 1036 ASSERT(p_wd[0] <= HME_MAX_WIDTH); in hme_derive_num_layers() 1039 p_disp_wd[0] = p_wd[0]; in hme_derive_num_layers() 1050 wd1 = FLOOR16(p_wd[i - 1] >> 1); in hme_derive_num_layers() 1051 wd2 = CEIL16((p_wd[i - 1] * 3) >> 2); in hme_derive_num_layers() 1052 ASSERT(p_wd[i] >= wd1); in hme_derive_num_layers() 1053 ASSERT(p_wd[i] <= wd2); in hme_derive_num_layers() 1059 ASSERT(p_wd[n_enc_layers - 1] >= 2 * MIN_WD_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() 1070 p_wd[i] = CEIL16(p_wd[i - 1] >> 1); in hme_derive_num_layers() [all …]
|
D | ihevce_coarse_me_pass.c | 393 void *pv_me_ctxt, WORD32 n_enc_layers, WORD32 *p_wd, WORD32 *p_ht) in ihevce_coarse_me_set_resolution() argument 405 hme_coarse_set_resolution((void *)ps_me_thrd_ctxt, n_enc_layers, p_wd, p_ht); in ihevce_coarse_me_set_resolution()
|
D | ihevce_me_pass.c | 529 void ihevce_me_set_resolution(void *pv_me_ctxt, WORD32 n_enc_layers, WORD32 *p_wd, WORD32 *p_ht) in ihevce_me_set_resolution() argument 544 hme_set_resolution((void *)ps_me_thrd_ctxt, n_enc_layers, p_wd, p_ht, i); in ihevce_me_set_resolution()
|