Searched refs:thissme (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | rdopt.c | 1023 int thissme; in rd_check_segment() local 1085 thissme = cpi->diamond_search_sad( in rd_check_segment() 1089 if (thissme < bestsme) { in rd_check_segment() 1090 bestsme = thissme; in rd_check_segment() 1105 thissme = cpi->full_search_sad(x, c, e, &mvp_full, sadpb, 16, in rd_check_segment() 1108 if (thissme < bestsme) { in rd_check_segment() 1109 bestsme = thissme; in rd_check_segment() 2016 int thissme; in vp8_rd_pick_inter_mode() local 2085 thissme = cpi->diamond_search_sad( in vp8_rd_pick_inter_mode() 2092 if (thissme < bestsme) { in vp8_rd_pick_inter_mode() [all …]
|
D | pickinter.c | 993 int thissme; in vp8_pick_inter_mode() local 1126 thissme = cpi->diamond_search_sad( in vp8_pick_inter_mode() 1129 if (thissme < bestsme) { in vp8_pick_inter_mode() 1130 bestsme = thissme; in vp8_pick_inter_mode()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 1929 int thissme, n, num00 = 0; in full_pixel_diamond() local 1946 thissme = cpi->diamond_search_sad(x, &cpi->ss_cfg, mvp_full, &temp_mv, in full_pixel_diamond() 1949 if (thissme < INT_MAX) in full_pixel_diamond() 1950 thissme = vp9_get_mvpred_var(x, &temp_mv, ref_mv, fn_ptr, 1); in full_pixel_diamond() 1955 if (thissme < bestsme) { in full_pixel_diamond() 1956 bestsme = thissme; in full_pixel_diamond() 1966 thissme = vp9_refining_search_sad(x, &best_mv, sadpb, search_range, fn_ptr, in full_pixel_diamond() 1968 if (thissme < INT_MAX) in full_pixel_diamond() 1969 thissme = vp9_get_mvpred_var(x, &best_mv, ref_mv, fn_ptr, 1); in full_pixel_diamond() 1970 if (thissme < bestsme) { in full_pixel_diamond() [all …]
|