Home
last modified time | relevance | path

Searched refs:cost_array (Results 1 – 1 of 1) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c755 unsigned int cost_array[5]; in vp9_find_best_sub_pixel_tree() local
813 cost_array[idx] = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, in vp9_find_best_sub_pixel_tree()
816 if (cost_array[idx] < besterr) { in vp9_find_best_sub_pixel_tree()
818 besterr = cost_array[idx]; in vp9_find_best_sub_pixel_tree()
823 cost_array[idx] = UINT_MAX; in vp9_find_best_sub_pixel_tree()
828 kc = (cost_array[0] <= cost_array[1] ? -hstep : hstep); in vp9_find_best_sub_pixel_tree()
829 kr = (cost_array[2] <= cost_array[3] ? -hstep : hstep); in vp9_find_best_sub_pixel_tree()
849 cost_array[4] = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, in vp9_find_best_sub_pixel_tree()
852 if (cost_array[4] < besterr) { in vp9_find_best_sub_pixel_tree()
854 besterr = cost_array[4]; in vp9_find_best_sub_pixel_tree()
[all …]