/external/libaom/libaom/av1/encoder/ |
D | mcomp.h | 62 int av1_mv_bit_cost(const MV *mv, const MV *ref, const int *mvjcost, 109 int iters_per_step, int *cost_list, int *mvjcost, int *mvcost[2], 154 int *mvjcost, int *mvcost[2], int *distortion, unsigned int *sse1,
|
D | mcomp.c | 94 int av1_mv_bit_cost(const MV *mv, const MV *ref, const int *mvjcost, in av1_mv_bit_cost() argument 97 return ROUND_POWER_OF_TWO(mv_cost(&diff, mvjcost, mvcost) * weight, 7); in av1_mv_bit_cost() 101 static int mv_err_cost(const MV *mv, const MV *ref, const int *mvjcost, in mv_err_cost() argument 106 (int64_t)mv_cost(&diff, mvjcost, mvcost) * error_per_bit, in mv_err_cost() 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); \ 337 int mask_stride, int invert_mask, int w, int h, int offset, int *mvjcost, in setup_center_error() argument 366 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in setup_center_error() 398 int *cost_list, int *mvjcost, int *mvcost[2], int *distortion, in av1_find_best_sub_pixel_tree_pruned_evenmore() argument 406 h, offset, mvjcost, mvcost, sse1, distortion); in av1_find_best_sub_pixel_tree_pruned_evenmore() [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 93 int vp9_mv_bit_cost(const MV *mv, const MV *ref, const int *mvjcost, in vp9_mv_bit_cost() argument 96 return ROUND_POWER_OF_TWO(mv_cost(&diff, mvjcost, mvcost) * weight, 7); in vp9_mv_bit_cost() 100 static int mv_err_cost(const MV *mv, const MV *ref, const int *mvjcost, in mv_err_cost() argument 105 (int64_t)mv_cost(&diff, mvjcost, mvcost) * error_per_bit, in mv_err_cost() 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) + \ 305 int *mvjcost, int *mvcost[2], uint32_t *sse1, uint32_t *distortion) { in setup_center_error() argument 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() 373 int iters_per_step, int *cost_list, int *mvjcost, int *mvcost[2], in vp9_skip_sub_pixel_tree() argument [all …]
|
D | vp9_mcomp.h | 45 int vp9_mv_bit_cost(const MV *mv, const MV *ref, const int *mvjcost, 76 int iters_per_step, int *cost_list, int *mvjcost, int *mvcost[2],
|
D | vp9_rdopt.c | 1433 int_mv *best_ref_mv[2], const int *mvjcost, in set_and_cost_bmi_mvs() argument 1447 mvjcost, mvcost, MV_COST_WEIGHT_SUB); in set_and_cost_bmi_mvs() 1451 mvjcost, mvcost, MV_COST_WEIGHT_SUB); in set_and_cost_bmi_mvs()
|