Searched refs:bestmv (Results 1 – 7 of 7) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 222 int_mv *bestmv, int_mv *ref_mv, in vp8_find_best_sub_pixel_step_iteratively() argument 230 int br = bestmv->as_mv.row * 4, bc = bestmv->as_mv.col * 4; in vp8_find_best_sub_pixel_step_iteratively() 256 unsigned char *y_0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + in vp8_find_best_sub_pixel_step_iteratively() 257 bestmv->as_mv.col; in vp8_find_best_sub_pixel_step_iteratively() 262 buf_r1 = ((bestmv->as_mv.row - 3) < x->mv_row_min) in vp8_find_best_sub_pixel_step_iteratively() 263 ? (bestmv->as_mv.row - x->mv_row_min) in vp8_find_best_sub_pixel_step_iteratively() 265 buf_r2 = ((bestmv->as_mv.row + 3) > x->mv_row_max) in vp8_find_best_sub_pixel_step_iteratively() 266 ? (x->mv_row_max - bestmv->as_mv.row) in vp8_find_best_sub_pixel_step_iteratively() 268 buf_c1 = ((bestmv->as_mv.col - 3) < x->mv_col_min) in vp8_find_best_sub_pixel_step_iteratively() 269 ? (bestmv->as_mv.col - x->mv_col_min) in vp8_find_best_sub_pixel_step_iteratively() [all …]
|
D | mcomp.h | 42 int_mv *bestmv, int_mv *ref_mv,
|
D | pickinter.c | 124 int_mv *bestmv, int_mv *ref_mv, in vp8_skip_fractional_mv_step() argument 138 bestmv->as_mv.row *= 8; in vp8_skip_fractional_mv_step() 139 bestmv->as_mv.col *= 8; in vp8_skip_fractional_mv_step()
|
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 311 MV *bestmv = &x->best_mv.as_mv; \ 316 const int offset = bestmv->row * y_stride + bestmv->col; \ 319 int br = bestmv->row * 8; \ 320 int bc = bestmv->col * 8; \ 329 bestmv->row *= 8; \ 330 bestmv->col *= 8; 333 const MACROBLOCKD *xd, const MV *bestmv, const MV *ref_mv, in setup_center_error() argument 366 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in setup_center_error() 403 besterr = setup_center_error(xd, bestmv, ref_mv, error_per_bit, vfp, in av1_find_best_sub_pixel_tree_pruned_evenmore() 461 bestmv->row = br; in av1_find_best_sub_pixel_tree_pruned_evenmore() [all …]
|
D | mcomp.h | 152 MV *bestmv, const MV *ref_mv, int allow_hp, int error_per_bit,
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 278 const int offset = bestmv->row * y_stride + bestmv->col; \ 283 int br = bestmv->row * 8; \ 284 int bc = bestmv->col * 8; \ 297 bestmv->row *= 8; \ 298 bestmv->col *= 8; 301 const MACROBLOCKD *xd, const MV *bestmv, const MV *ref_mv, 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() 371 const MACROBLOCK *x, MV *bestmv, const MV *ref_mv, int allow_hp, in vp9_skip_sub_pixel_tree() argument 377 besterr = setup_center_error(xd, bestmv, ref_mv, error_per_bit, vfp, z, in vp9_skip_sub_pixel_tree() [all …]
|
D | vp9_mcomp.h | 73 const MACROBLOCK *x, MV *bestmv, const MV *ref_mv, int allow_hp,
|