Home
last modified time | relevance | path

Searched refs:bestmv (Results 1 – 7 of 7) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dmcomp.c222 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 …]
Dmcomp.h42 int_mv *bestmv, int_mv *ref_mv,
Dpickinter.c124 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/
Dmcomp.c2386 const MACROBLOCKD *xd, const MV *bestmv, in setup_center_error() argument
2395 const uint8_t *y = get_buf_from_mv(ms_buffers->ref, *bestmv); in setup_center_error()
2442 besterr += mv_err_cost_(bestmv, mv_cost_params); in setup_center_error()
2448 MACROBLOCKD *xd, const AV1_COMMON *const cm, const MV *bestmv, in upsampled_setup_center_error() argument
2451 unsigned int besterr = upsampled_pref_error(xd, cm, bestmv, var_params, sse1); in upsampled_setup_center_error()
2453 besterr += mv_err_cost_(bestmv, mv_cost_params); in upsampled_setup_center_error()
2499 const SUBPEL_MOTION_SEARCH_PARAMS *ms_params, MV start_mv, MV *bestmv, in av1_find_best_sub_pixel_tree_pruned_evenmore() argument
2515 *bestmv = start_mv; in av1_find_best_sub_pixel_tree_pruned_evenmore()
2517 besterr = setup_center_error(xd, bestmv, var_params, mv_cost_params, sse1, in av1_find_best_sub_pixel_tree_pruned_evenmore()
2520 if (check_repeated_mv_and_update(last_mv_search_list, *bestmv, iter)) { in av1_find_best_sub_pixel_tree_pruned_evenmore()
[all …]
Dmcomp.h277 MV start_mv, MV *bestmv, int *distortion,
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c273 const int offset = bestmv->row * y_stride + bestmv->col; \
278 int br = bestmv->row * 8; \
279 int bc = bestmv->col * 8; \
292 bestmv->row *= 8; \
293 bestmv->col *= 8;
296 const MACROBLOCKD *xd, const MV *bestmv, const MV *ref_mv, in setup_center_error() argument
319 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in setup_center_error()
333 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in setup_center_error()
366 const MACROBLOCK *x, MV *bestmv, const MV *ref_mv, int allow_hp, in vp9_skip_sub_pixel_tree() argument
372 besterr = setup_center_error(xd, bestmv, ref_mv, error_per_bit, vfp, z, in vp9_skip_sub_pixel_tree()
[all …]
Dvp9_mcomp.h81 const MACROBLOCK *x, MV *bestmv, const MV *ref_mv, int allow_hp,