Searched refs:bestsme (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | temporal_filter.c | 151 int bestsme = INT_MAX; in vp8_temporal_filter_find_matching_mb_c() local 193 bestsme = vp8_hex_search(x, b, d, &best_ref_mv1_full, &d->bmi.mv, in vp8_temporal_filter_find_matching_mb_c() 204 bestsme = cpi->find_fractional_mv_step(x, b, d, in vp8_temporal_filter_find_matching_mb_c() 221 return bestsme; in vp8_temporal_filter_find_matching_mb_c()
|
D | rdopt.c | 1191 int bestsme = INT_MAX; in rd_check_segment() local 1241 bestsme = cpi->diamond_search_sad(x, c, e, &mvp_full, in rd_check_segment() 1263 if (thissme < bestsme) in rd_check_segment() 1265 bestsme = thissme; in rd_check_segment() 1275 if ((cpi->compressor_speed == 0) && (bestsme >> sseshift) > 4000) in rd_check_segment() 1284 if (thissme < bestsme) in rd_check_segment() 1286 bestsme = thissme; in rd_check_segment() 1299 if (bestsme < INT_MAX) in rd_check_segment() 2240 int bestsme = INT_MAX; in vp8_rd_pick_inter_mode() local 2290 bestsme = cpi->diamond_search_sad(x, b, d, &mvp_full, &d->bmi.mv, in vp8_rd_pick_inter_mode() [all …]
|
D | pickinter.c | 700 int bestsme = INT_MAX; in vp8_pick_inter_mode() local 1195 bestsme = vp8_hex_search(x, b, d, &mvp_full, &d->bmi.mv, in vp8_pick_inter_mode() 1203 bestsme = cpi->diamond_search_sad(x, b, d, &mvp_full, in vp8_pick_inter_mode() 1228 if (thissme < bestsme) in vp8_pick_inter_mode() 1230 bestsme = thissme; in vp8_pick_inter_mode() 1246 if (bestsme < INT_MAX) in vp8_pick_inter_mode()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_temporal_filter.c | 224 int bestsme = INT_MAX; in temporal_filter_find_matching_mb_c() local 256 bestsme = cpi->find_fractional_mv_step(x, ref_mv, in temporal_filter_find_matching_mb_c() 270 return bestsme; in temporal_filter_find_matching_mb_c()
|
D | vp9_rdopt.c | 1600 int bestsme = INT_MAX; in joint_motion_search() local 1661 bestsme = vp9_refining_search_8p_c(x, &tmp_mv, sadpb, in joint_motion_search() 1665 if (bestsme < INT_MAX) in joint_motion_search() 1666 bestsme = vp9_get_mvpred_av_var(x, &tmp_mv, &ref_mv[id].as_mv, in joint_motion_search() 1674 if (bestsme < INT_MAX) { in joint_motion_search() 1677 bestsme = cpi->find_fractional_mv_step( in joint_motion_search() 1694 if (bestsme < last_besterr[id]) { in joint_motion_search() 1696 last_besterr[id] = bestsme; in joint_motion_search() 1820 int thissme, bestsme = INT_MAX; in rd_pick_best_sub8x8_mode() local 1869 bestsme = vp9_full_pixel_search( in rd_pick_best_sub8x8_mode() [all …]
|
D | vp9_mcomp.c | 1962 int bestsme = cpi->diamond_search_sad(x, &cpi->ss_cfg, mvp_full, &temp_mv, in full_pixel_diamond() local 1965 if (bestsme < INT_MAX) in full_pixel_diamond() 1966 bestsme = vp9_get_mvpred_var(x, &temp_mv, ref_mv, fn_ptr, 1); in full_pixel_diamond() 1990 if (thissme < bestsme) { in full_pixel_diamond() 1991 bestsme = thissme; in full_pixel_diamond() 2005 if (thissme < bestsme) { in full_pixel_diamond() 2006 bestsme = thissme; in full_pixel_diamond() 2015 return bestsme; in full_pixel_diamond()
|