Home | History | Annotate | Download | only in encoder

Lines Matching refs:ref_mv

25 static unsigned int do_16x16_motion_iteration(VP9_COMP *cpi, const MV *ref_mv,
41 vp9_set_mv_search_range(&x->mv_limits, ref_mv);
43 ref_full.col = ref_mv->col >> 3;
44 ref_full.row = ref_mv->row >> 3;
49 cond_cost_list(cpi, cost_list), ref_mv, dst_mv, 0, 0);
61 x, dst_mv, ref_mv, cpi->common.allow_high_precision_mv, x->errorperbit,
76 static int do_16x16_motion_search(VP9_COMP *cpi, const MV *ref_mv,
91 tmp_err = do_16x16_motion_iteration(cpi, ref_mv, &tmp_mv, mb_row, mb_col);
99 if (ref_mv->row != 0 || ref_mv->col != 0) {