Searched refs:y_sad (Results 1 – 2 of 2) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | var_based_part.c | 579 BLOCK_SIZE bsize, unsigned int y_sad, in chroma_check() argument 597 x->color_sensitivity[i - 1] = uv_sad > (y_sad >> 2); in chroma_check() 641 unsigned int y_sad = UINT_MAX; in av1_choose_var_based_partitioning() local 725 y_sad = av1_int_pro_motion_estimation(cpi, x, cm->seq_params.sb_size, in av1_choose_var_based_partitioning() 729 if (y_sad == UINT_MAX) { in av1_choose_var_based_partitioning() 730 y_sad = cpi->fn_ptr[bsize].sdf( in av1_choose_var_based_partitioning() 737 if (y_sad_g < 0.9 * y_sad) { in av1_choose_var_based_partitioning() 742 y_sad = y_sad_g; in av1_choose_var_based_partitioning() 1001 chroma_check(cpi, x, bsize, y_sad, is_key_frame); in av1_choose_var_based_partitioning()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encodeframe.c | 1211 unsigned int y_sad, int is_key_frame) { in chroma_check() argument 1219 if (y_sad > cpi->vbp_thresholds[1] && in chroma_check() 1237 x->color_sensitivity[i - 1] = uv_sad > (y_sad >> 2); in chroma_check() 1316 unsigned int y_sad = UINT_MAX; in choose_partitioning() local 1478 y_sad = cpi->fn_ptr[bsize].sdf( in choose_partitioning() 1483 y_sad = vp9_int_pro_motion_estimation(cpi, x, bsize, mi_row, mi_col, in choose_partitioning() 1499 y_sad < 100000) { in choose_partitioning() 1506 y_sad_last = y_sad; in choose_partitioning() 1509 y_sad_thr = cpi->sf.short_circuit_low_temp_var ? (y_sad * 7) >> 3 : y_sad; in choose_partitioning() 1515 y_sad = y_sad_g; in choose_partitioning() [all …]
|