Searched refs:tmp_sad (Results 1 – 6 of 6) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | nonrd_pickmode.c | 205 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()
|
D | mcomp.c | 1651 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/ |
D | vp9_ratectrl.c | 3005 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()
|
D | vp9_mcomp.c | 2319 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()
|
D | vp9_pickmode.c | 1579 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()
|
D | vp9_encodeframe.c | 1244 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()
|