Searched refs:bestsad (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 821 if (thissad < bestsad) { \ 824 if (thissad < bestsad) { \ 825 bestsad = thissad; \ 855 unsigned int bestsad; in vp8_hex_search() local 880 bestsad = vfp->sdf(what, what_stride, this_offset, in_what_stride) + in vp8_hex_search() 1012 return bestsad; in vp8_hex_search() 1035 unsigned int bestsad; in vp8_diamond_search_sad_c() local 1070 bestsad = fn_ptr->sdf(what, what_stride, in_what, in_what_stride) + in vp8_diamond_search_sad_c() 1097 if (thissad < bestsad) { in vp8_diamond_search_sad_c() 1103 if (thissad < bestsad) { in vp8_diamond_search_sad_c() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 950 if (thissad < bestsad) { \ 953 if (thissad < bestsad) { \ 954 bestsad = thissad; \ 1028 int bestsad = INT_MAX; in vp9_pattern_search() local 1040 bestsad = vfp->sdf(what->buf, what->stride, get_buf_from_mv(in_what, ref_mv), in vp9_pattern_search() 1177 return bestsad; in vp9_pattern_search() 1198 int bestsad = INT_MAX; in vp9_pattern_search_sad() local 1214 bestsad = vfp->sdf(what->buf, what->stride, get_buf_from_mv(in_what, ref_mv), in vp9_pattern_search_sad() 1340 cost_list[0] = bestsad; in vp9_pattern_search_sad() 1377 cost_list[0] = bestsad; in vp9_pattern_search_sad() [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 580 if (thissad < bestsad) { \ 583 if (thissad < bestsad) { \ 585 bestsad = thissad; \ 610 int bestsad = INT_MAX, raw_bestsad = INT_MAX; in pattern_search() local 630 bestsad = raw_bestsad + mvsad_err_cost_(&start_mv, mv_cost_params); in pattern_search() 1015 unsigned int bestsad = INT_MAX; in diamond_search_sad() local 1030 bestsad = get_mvpred_compound_sad(ms_params, src, best_address, ref_stride); in diamond_search_sad() 1031 bestsad += mvsad_err_cost_(best_mv, &ms_params->mv_cost_params); in diamond_search_sad() 1059 if (sads[j] < bestsad) { in diamond_search_sad() 1064 if (thissad < bestsad) { in diamond_search_sad() [all …]
|