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.c667 unsigned int cost_array[5]; in vp9_find_best_sub_pixel_tree() local
705 cost_array[idx] = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, in vp9_find_best_sub_pixel_tree()
708 if (cost_array[idx] < besterr) { in vp9_find_best_sub_pixel_tree()
710 besterr = cost_array[idx]; in vp9_find_best_sub_pixel_tree()
715 cost_array[idx] = UINT_MAX; in vp9_find_best_sub_pixel_tree()
720 kc = (cost_array[0] <= cost_array[1] ? -hstep : hstep); in vp9_find_best_sub_pixel_tree()
721 kr = (cost_array[2] <= cost_array[3] ? -hstep : hstep); in vp9_find_best_sub_pixel_tree()
734 cost_array[4] = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, in vp9_find_best_sub_pixel_tree()
737 if (cost_array[4] < besterr) { in vp9_find_best_sub_pixel_tree()
739 besterr = cost_array[4]; in vp9_find_best_sub_pixel_tree()
[all …]