Lines Matching refs:mv_mode
6883 static int_mv find_ref_mv(int mv_mode, VP9_COMP *cpi, TplDepFrame *tpl_frame, argument
6919 if (mv_mode == NEAREST_MV_MODE) {
6922 if (mv_mode == NEAR_MV_MODE) {
6929 static int_mv get_mv_from_mv_mode(int mv_mode, VP9_COMP *cpi, argument
6934 switch (mv_mode) {
6943 mv = find_ref_mv(mv_mode, cpi, tpl_frame, bsize, mi_row, mi_col);
6946 mv = find_ref_mv(mv_mode, cpi, tpl_frame, bsize, mi_row, mi_col);
6956 static double get_mv_dist(int mv_mode, VP9_COMP *cpi, MACROBLOCKD *xd, argument
6965 *mv = get_mv_from_mv_mode(mv_mode, cpi, motion_field, tpl_frame, bsize,
6980 static int get_mv_mode_cost(int mv_mode) { argument
6988 switch (mv_mode) {
7003 static double get_mv_cost(int mv_mode, VP9_COMP *cpi, MotionField *motion_field, argument
7006 double mv_cost = get_mv_mode_cost(mv_mode);
7007 if (mv_mode == NEW_MV_MODE) {
7008 MV new_mv = get_mv_from_mv_mode(mv_mode, cpi, motion_field, tpl_frame,
7024 static double eval_mv_mode(int mv_mode, VP9_COMP *cpi, MACROBLOCK *x, argument
7031 get_mv_dist(mv_mode, cpi, xd, gf_picture, motion_field, frame_idx,
7034 get_mv_cost(mv_mode, cpi, motion_field, tpl_frame, bsize, mi_row, mi_col);
7048 int mv_mode; local
7050 for (mv_mode = 0; mv_mode < MAX_MV_MODE; ++mv_mode) {
7053 if (mv_mode == NEW_MV_MODE) {
7056 this_rd = eval_mv_mode(mv_mode, cpi, x, gf_picture, motion_field, frame_idx,
7061 best_mv_mode = mv_mode;
7067 best_mv_mode = mv_mode;
7431 const int mv_mode = local
7434 printf("%d ", mv_mode);