Searched refs:thissme (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | rdopt.c | 1190 int thissme; in rd_check_segment() local 1257 thissme = cpi->diamond_search_sad(x, c, e, in rd_check_segment() 1263 if (thissme < bestsme) in rd_check_segment() 1265 bestsme = thissme; in rd_check_segment() 1280 thissme = cpi->full_search_sad(x, c, e, &mvp_full, in rd_check_segment() 1284 if (thissme < bestsme) in rd_check_segment() 1286 bestsme = thissme; in rd_check_segment() 2239 int thissme; in vp8_rd_pick_inter_mode() local 2314 thissme = cpi->diamond_search_sad(x, b, d, &mvp_full, in vp8_rd_pick_inter_mode() 2323 if (thissme < bestsme) in vp8_rd_pick_inter_mode() [all …]
|
D | pickinter.c | 1069 int thissme; in vp8_pick_inter_mode() local 1221 thissme = in vp8_pick_inter_mode() 1228 if (thissme < bestsme) in vp8_pick_inter_mode() 1230 bestsme = thissme; in vp8_pick_inter_mode()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 1961 int thissme, n, num00 = 0; in full_pixel_diamond() local 1980 thissme = cpi->diamond_search_sad(x, &cpi->ss_cfg, mvp_full, &temp_mv, in full_pixel_diamond() 1983 if (thissme < INT_MAX) in full_pixel_diamond() 1984 thissme = 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() 2001 thissme = vp9_refining_search_sad(x, &best_mv, sadpb, search_range, in full_pixel_diamond() 2003 if (thissme < INT_MAX) in full_pixel_diamond() 2004 thissme = vp9_get_mvpred_var(x, &best_mv, ref_mv, fn_ptr, 1); in full_pixel_diamond() 2005 if (thissme < bestsme) { in full_pixel_diamond() [all …]
|
D | vp9_rdopt.c | 1820 int thissme, bestsme = INT_MAX; in rd_pick_best_sub8x8_mode() local 1881 thissme = cpi->full_search_sad(x, &mvp_full, in rd_pick_best_sub8x8_mode() 1886 if (thissme < bestsme) { in rd_pick_best_sub8x8_mode() 1887 bestsme = thissme; in rd_pick_best_sub8x8_mode()
|