Home
last modified time | relevance | path

Searched refs:tmp_sad (Results 1 – 6 of 6) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dnonrd_pickmode.c205 int tmp_sad; in search_new_mv() local
211 tmp_sad = av1_int_pro_motion_estimation( in search_new_mv()
215 if (tmp_sad > x->pred_mv_sad[LAST_FRAME]) return -1; in search_new_mv()
216 if (tmp_sad + (num_pels_log2_lookup[bsize] << 4) > best_pred_sad) return -1; in search_new_mv()
Dmcomp.c1651 unsigned int best_sad, tmp_sad, this_sad[4]; in av1_int_pro_motion_estimation() local
1752 tmp_sad = cpi->fn_ptr[bsize].sdf(src_buf, src_stride, ref_buf, ref_stride); in av1_int_pro_motion_estimation()
1753 if (best_sad > tmp_sad) { in av1_int_pro_motion_estimation()
1755 best_sad = tmp_sad; in av1_int_pro_motion_estimation()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.c3005 uint64_t tmp_sad = 0; in vp9_scene_detection_onepass() local
3023 tmp_sad = cpi->fn_ptr[bsize].sdf(src_y, src_ystride, last_src_y, in vp9_scene_detection_onepass()
3025 avg_sad += tmp_sad; in vp9_scene_detection_onepass()
3027 if (tmp_sad == 0) num_zero_temp_sad++; in vp9_scene_detection_onepass()
Dvp9_mcomp.c2319 unsigned int best_sad, tmp_sad, this_sad[4]; in vp9_int_pro_motion_estimation() local
2418 tmp_sad = cpi->fn_ptr[bsize].sdf(src_buf, src_stride, ref_buf, ref_stride); in vp9_int_pro_motion_estimation()
2419 if (best_sad > tmp_sad) { in vp9_int_pro_motion_estimation()
2421 best_sad = tmp_sad; in vp9_int_pro_motion_estimation()
Dvp9_pickmode.c1579 int tmp_sad; in search_new_mv() local
1585 tmp_sad = vp9_int_pro_motion_estimation( in search_new_mv()
1589 if (tmp_sad > x->pred_mv_sad[LAST_FRAME]) return -1; in search_new_mv()
1590 if (tmp_sad + (num_pels_log2_lookup[bsize] << 4) > best_pred_sad) return -1; in search_new_mv()
Dvp9_encodeframe.c1244 uint64_t tmp_sad; in avg_source_sad() local
1258 tmp_sad = in avg_source_sad()
1263 if (tmp_sad < avg_source_sad_threshold) in avg_source_sad()
1275 else if (tmp_sad > (avg_source_sad_threshold << 1)) in avg_source_sad()
1279 if (tmp_sad < avg_source_sad_threshold2) { in avg_source_sad()
1287 if (tmp_sad == 0) x->zero_temp_sad_source = 1; in avg_source_sad()
1288 return tmp_sad; in avg_source_sad()