Searched refs:mv_err_cost (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 39 static int mv_err_cost(int_mv *mv, int_mv *ref, int *mvcost[2], in mv_err_cost() function 292 besterr += mv_err_cost(bestmv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step_iteratively() 407 bestmse += mv_err_cost(bestmv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 414 left = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 426 right = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 440 up = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 452 down = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 494 diag = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 523 left = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() 535 right = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit); in vp8_find_best_sub_pixel_step() [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 101 static int mv_err_cost(const MV *mv, const MV *ref, const int *mvjcost, in mv_err_cost() function 187 v = mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit); \ 221 v = mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit); \ 366 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in setup_center_error() 702 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in upsampled_setup_center_error() 807 cost_array[idx] = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, in av1_find_best_sub_pixel_tree() 842 cost_array[4] = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, in av1_find_best_sub_pixel_tree() 907 mse += mv_err_cost(this_mv, &ref_mv.as_mv, x->nmv_vec_cost, x->mv_cost_stack, in av1_compute_motion_cost() 1047 mv_err_cost(&neighbor_mv, &fcenter_mv, x->nmv_vec_cost, in calc_int_cost_list() 1060 mv_err_cost(&neighbor_mv, &fcenter_mv, x->nmv_vec_cost, in calc_int_cost_list() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 100 static int mv_err_cost(const MV *mv, const MV *ref, const int *mvjcost, in mv_err_cost() function 180 tmpmse += mv_err_cost(&mv, &ref_mv, mvjcost, mvcost, error_per_bit); \ 205 if ((v = mv_err_cost(&mv, &ref_mv, mvjcost, mvcost, error_per_bit) + \ 324 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in setup_center_error() 338 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in setup_center_error() 695 tmpmse += mv_err_cost(&mv, &ref_mv, mvjcost, mvcost, error_per_bit); \ 717 if ((v = mv_err_cost(&mv, &ref_mv, mvjcost, mvcost, error_per_bit) + \ 818 cost_array[idx] = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, in vp9_find_best_sub_pixel_tree() 854 cost_array[4] = thismse + mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, in vp9_find_best_sub_pixel_tree() 996 mv_err_cost(&this_mv, &fcenter_mv, x->nmvjointcost, in calc_int_cost_list() [all …]
|