Home
last modified time | relevance | path

Searched refs:u4_sad (Results 1 – 5 of 5) sorted by relevance

/external/libhevc/encoder/
Dihevce_chroma_had_satd.c114 UWORD32 u4_sad = 0; in ihevce_chroma_HAD_4x4_8bit() local
202 u4_sad += (d[k] > 0 ? d[k] : -d[k]); in ihevce_chroma_HAD_4x4_8bit()
204 u4_sad = ((u4_sad + 2) >> 2); in ihevce_chroma_HAD_4x4_8bit()
206 return u4_sad; in ihevce_chroma_HAD_4x4_8bit()
253 UWORD32 u4_sad = 0; in ihevce_chroma_compute_AC_HAD_4x4_8bit() local
344 u4_sad += (d[k] > 0 ? d[k] : -d[k]); in ihevce_chroma_compute_AC_HAD_4x4_8bit()
346 u4_sad = ((u4_sad + 2) >> 2); in ihevce_chroma_compute_AC_HAD_4x4_8bit()
348 return u4_sad; in ihevce_chroma_compute_AC_HAD_4x4_8bit()
394 UWORD32 u4_sad = 0; in ihevce_chroma_HAD_8x8_8bit() local
484 u4_sad += (m2[i][j] > 0 ? m2[i][j] : -m2[i][j]); in ihevce_chroma_HAD_8x8_8bit()
[all …]
Dihevce_had_satd.c365 UWORD32 u4_sad = 0; in ihevce_HAD_4x4_8bit() local
372 u4_sad += abs(v[k]); in ihevce_HAD_4x4_8bit()
373 u4_sad = ((u4_sad + 2) >> 2); in ihevce_HAD_4x4_8bit()
375 return u4_sad; in ihevce_HAD_4x4_8bit()
423 UWORD32 u4_sad = 0; in ihevce_HAD_8x8_8bit() local
431 u4_sad += abs(v[k]); in ihevce_HAD_8x8_8bit()
432 u4_sad = ((u4_sad + 4) >> 3); in ihevce_HAD_8x8_8bit()
434 return u4_sad; in ihevce_HAD_8x8_8bit()
482 UWORD32 u4_sad = 0; in ihevce_compute_ac_had_8x8_8bit() local
491 u4_sad += abs(v[k]); in ihevce_compute_ac_had_8x8_8bit()
[all …]
Dihevce_tu_tree_selector.c150 ps_tu_data->u4_sad = 0; in ihevce_tu_node_data_init()
881 &ps_node->s_luma_data.u4_sad, in ihevce_tu_processor()
2221 ps_final_prms->u4_cu_sad += ps_node->s_luma_data.u4_sad; in ihevce_tu_selector_debriefer()
Dhme_err_compute.c528 U32 u4_sad = 0; in compute_satd_8bit() local
551 u4_sad += ps_prms->ps_cmn_utils_optimised_function_list->pf_HAD_8x8_8bit( in compute_satd_8bit()
564 u4_sad += ps_prms->ps_cmn_utils_optimised_function_list->pf_HAD_4x4_8bit( in compute_satd_8bit()
572 ps_prms->pi4_sad_grid[0] = (S32)u4_sad; in compute_satd_8bit()
Dihevce_enc_loop_structs.h3061 UWORD32 u4_sad; member