HomeSort by relevance Sort by last modified time
    Searched refs:this_mv (Results 1 - 3 of 3) sorted by null

  /external/libvpx/vp8/encoder/
mcomp.c 316 //MV this_mv;
317 MV this_mv; local
343 this_mv.row = startmv.row;
344 this_mv.col = ((startmv.col - 8) | 4);
346 left += mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit);
350 *bestmv = this_mv;
354 this_mv.col += 8;
356 right += mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit);
360 *bestmv = this_mv;
365 this_mv.col = startmv.col
603 MV this_mv; local
932 MV this_mv; local
1048 MV this_mv; local
1190 MV this_mv; local
1280 MV this_mv; local
1403 MV this_mv; local
    [all...]
rdopt.c 884 MV *this_mv, MV *best_ref_mv,
922 thismvcost = vp8_mv_bit_cost(this_mv, best_ref_mv, mvcost, 102);
925 *this_mv = col ? d[-1].bmi.mv.as_mv : vp8_left_bmi(mic, i)->mv.as_mv;
928 *this_mv = row ? d[-4].bmi.mv.as_mv : vp8_above_bmi(mic, i, mis)->mv.as_mv;
931 this_mv->row = this_mv->col = 0;
941 if (mv.row == this_mv->row && mv.col == this_mv->col)
949 d->bmi.mv.as_mv = *this_mv;
    [all...]
  /external/libvpx/vp8/common/
findnearmv.c 66 int_mv this_mv; local
68 this_mv.as_int = left->mbmi.mv.as_int;
69 mv_bias(ref_frame_sign_bias[left->mbmi.ref_frame], refframe, &this_mv, ref_frame_sign_bias);
71 if (this_mv.as_int != mv->as_int)
73 (++mv)->as_int = this_mv.as_int;
88 int_mv this_mv; local
90 this_mv.as_int = aboveleft->mbmi.mv.as_int;
91 mv_bias(ref_frame_sign_bias[aboveleft->mbmi.ref_frame], refframe, &this_mv, ref_frame_sign_bias);
93 if (this_mv.as_int != mv->as_int)
95 (++mv)->as_int = this_mv.as_int
    [all...]

Completed in 161 milliseconds