Searched refs:thissme (Results 1 – 4 of 4) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 1805 int thissme, n, num00 = 0; in full_pixel_diamond() local 1822 thissme = in full_pixel_diamond() 1825 if (thissme < INT_MAX) in full_pixel_diamond() 1826 thissme = av1_get_mvpred_var(x, &temp_mv, ref_mv, fn_ptr, 1); in full_pixel_diamond() 1831 if (thissme < bestsme) { in full_pixel_diamond() 1832 bestsme = thissme; in full_pixel_diamond() 1842 thissme = av1_refining_search_sad(x, &best_mv, sadpb, search_range, fn_ptr, in full_pixel_diamond() 1844 if (thissme < INT_MAX) in full_pixel_diamond() 1845 thissme = av1_get_mvpred_var(x, &best_mv, ref_mv, fn_ptr, 1); in full_pixel_diamond() 1846 if (thissme < bestsme) { in full_pixel_diamond() [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | rdopt.c | 1018 int thissme; in rd_check_segment() local 1080 thissme = cpi->diamond_search_sad( in rd_check_segment() 1084 if (thissme < bestsme) { in rd_check_segment() 1085 bestsme = thissme; in rd_check_segment() 1100 thissme = cpi->full_search_sad(x, c, e, &mvp_full, sadpb, 16, in rd_check_segment() 1103 if (thissme < bestsme) { in rd_check_segment() 1104 bestsme = thissme; in rd_check_segment() 2015 int thissme; in vp8_rd_pick_inter_mode() local 2084 thissme = cpi->diamond_search_sad( in vp8_rd_pick_inter_mode() 2091 if (thissme < bestsme) { in vp8_rd_pick_inter_mode() [all …]
|
D | pickinter.c | 903 int thissme; in vp8_pick_inter_mode() local 1036 thissme = cpi->diamond_search_sad( in vp8_pick_inter_mode() 1039 if (thissme < bestsme) { in vp8_pick_inter_mode() 1040 bestsme = thissme; in vp8_pick_inter_mode()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 2279 double thissme; in vp9_full_pixel_diamond_new() local 2299 thissme = vp9_diamond_search_sad_new( in vp9_full_pixel_diamond_new() 2305 if (thissme < bestsme) { in vp9_full_pixel_diamond_new() 2306 bestsme = thissme; in vp9_full_pixel_diamond_new() 2320 thissme = vp9_refining_search_sad_new(x, &temp_mv, &mv_dist, &mv_cost, in vp9_full_pixel_diamond_new() 2323 if (thissme < bestsme) { in vp9_full_pixel_diamond_new() 2324 bestsme = thissme; in vp9_full_pixel_diamond_new() 2344 int thissme, n, num00 = 0; in full_pixel_diamond() local 2361 thissme = cpi->diamond_search_sad(x, &cpi->ss_cfg, mvp_full, &temp_mv, in full_pixel_diamond() 2364 if (thissme < INT_MAX) in full_pixel_diamond() [all …]
|