Searched refs:tmp_sad (Results 1 – 5 of 5) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 2146 unsigned int best_sad, tmp_sad, this_sad[4]; in vp9_int_pro_motion_estimation() local 2245 tmp_sad = cpi->fn_ptr[bsize].sdf(src_buf, src_stride, ref_buf, ref_stride); in vp9_int_pro_motion_estimation() 2246 if (best_sad > tmp_sad) { in vp9_int_pro_motion_estimation() 2248 best_sad = tmp_sad; in vp9_int_pro_motion_estimation()
|
D | vp9_ratectrl.c | 2876 uint64_t tmp_sad = 0; in vp9_scene_detection_onepass() local 2894 tmp_sad = cpi->fn_ptr[bsize].sdf(src_y, src_ystride, last_src_y, in vp9_scene_detection_onepass() 2896 avg_sad += tmp_sad; in vp9_scene_detection_onepass() 2898 if (tmp_sad == 0) num_zero_temp_sad++; in vp9_scene_detection_onepass()
|
D | vp9_pickmode.c | 1518 int tmp_sad; in search_new_mv() local 1524 tmp_sad = vp9_int_pro_motion_estimation( in search_new_mv() 1528 if (tmp_sad > x->pred_mv_sad[LAST_FRAME]) return -1; in search_new_mv() 1529 if (tmp_sad + (num_pels_log2_lookup[bsize] << 4) > best_pred_sad) return -1; in search_new_mv()
|
D | vp9_encodeframe.c | 1185 uint64_t tmp_sad; in avg_source_sad() local 1199 tmp_sad = in avg_source_sad() 1204 if (tmp_sad < avg_source_sad_threshold) in avg_source_sad() 1216 else if (tmp_sad > (avg_source_sad_threshold << 1)) in avg_source_sad() 1220 if (tmp_sad < avg_source_sad_threshold2) { in avg_source_sad() 1228 if (tmp_sad == 0) x->zero_temp_sad_source = 1; in avg_source_sad() 1229 return tmp_sad; in avg_source_sad()
|
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 2191 unsigned int best_sad, tmp_sad, this_sad[4]; in av1_int_pro_motion_estimation() local 2287 tmp_sad = cpi->fn_ptr[bsize].sdf(src_buf, src_stride, ref_buf, ref_stride); in av1_int_pro_motion_estimation() 2288 if (best_sad > tmp_sad) { in av1_int_pro_motion_estimation() 2290 best_sad = tmp_sad; in av1_int_pro_motion_estimation()
|