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

  /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...]
  /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...]

Completed in 398 milliseconds