Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dmcomp.c224 int_mv *bestmv, int_mv *ref_mv, in vp8_find_best_sub_pixel_step_iteratively() argument
232 int br = bestmv->as_mv.row * 4, bc = bestmv->as_mv.col * 4; in vp8_find_best_sub_pixel_step_iteratively()
258 unsigned char *y_0 = base_pre + d->offset + (bestmv->as_mv.row) * pre_stride + in vp8_find_best_sub_pixel_step_iteratively()
259 bestmv->as_mv.col; in vp8_find_best_sub_pixel_step_iteratively()
264 buf_r1 = ((bestmv->as_mv.row - 3) < x->mv_row_min) in vp8_find_best_sub_pixel_step_iteratively()
265 ? (bestmv->as_mv.row - x->mv_row_min) in vp8_find_best_sub_pixel_step_iteratively()
267 buf_r2 = ((bestmv->as_mv.row + 3) > x->mv_row_max) in vp8_find_best_sub_pixel_step_iteratively()
268 ? (x->mv_row_max - bestmv->as_mv.row) in vp8_find_best_sub_pixel_step_iteratively()
270 buf_c1 = ((bestmv->as_mv.col - 3) < x->mv_col_min) in vp8_find_best_sub_pixel_step_iteratively()
271 ? (bestmv->as_mv.col - x->mv_col_min) in vp8_find_best_sub_pixel_step_iteratively()
[all …]
Dmcomp.h48 int_mv *bestmv, int_mv *ref_mv,
Dpickinter.c196 int_mv *bestmv, int_mv *ref_mv, in vp8_skip_fractional_mv_step() argument
210 bestmv->as_mv.row *= 8; in vp8_skip_fractional_mv_step()
211 bestmv->as_mv.col *= 8; in vp8_skip_fractional_mv_step()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c299 const int offset = bestmv->row * y_stride + bestmv->col; \
304 int br = bestmv->row * 8; \
305 int bc = bestmv->col * 8; \
318 bestmv->row *= 8; \
319 bestmv->col *= 8;
322 const MACROBLOCKD *xd, const MV *bestmv, const MV *ref_mv, in setup_center_error() argument
345 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in setup_center_error()
359 besterr += mv_err_cost(bestmv, ref_mv, mvjcost, mvcost, error_per_bit); in setup_center_error()
388 uint32_t vp9_skip_sub_pixel_tree(const MACROBLOCK *x, MV *bestmv, in vp9_skip_sub_pixel_tree() argument
397 besterr = setup_center_error(xd, bestmv, ref_mv, error_per_bit, vfp, z, in vp9_skip_sub_pixel_tree()
[all …]
Dvp9_mcomp.h72 const MACROBLOCK *x, MV *bestmv, const MV *ref_mv, int allow_hp,