Searched refs:mv_err_cost (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 42 static int mv_err_cost(int_mv *mv, int_mv *ref, int *mvcost[2], int error_per_bit) in mv_err_cost() function 271 besterr += mv_err_cost(bestmv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step_iteratively() 406 bestmse += mv_err_cost(bestmv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 412 left = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 424 right = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 438 up = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 450 down = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 490 diag = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 526 left = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 538 right = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 83 static int mv_err_cost(const MV *mv, const MV *ref, in mv_err_cost() function 343 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in setup_center_error() 354 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in setup_center_error() 714 mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit); in vp9_find_best_sub_pixel_tree() 743 mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit); in vp9_find_best_sub_pixel_tree() 856 mv_err_cost(&this_mv, &fcenter_mv, x->nmvjointcost, x->mvcost, in calc_int_cost_list() 870 mv_err_cost(&this_mv, &fcenter_mv, x->nmvjointcost, x->mvcost, in calc_int_cost_list() 1354 (use_mvcost ? mv_err_cost(&mv, center_mv, x->nmvjointcost, in vp9_get_mvpred_var() 1371 (use_mvcost ? mv_err_cost(&mv, center_mv, x->nmvjointcost, in vp9_get_mvpred_av_var()
|