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

  /external/libvpx/vp8/encoder/arm/
mcomp_arm.c 351 //MV this_mv;
352 MV this_mv; local
378 this_mv.row = startmv.row;
379 this_mv.col = ((startmv.col - 8) | 4);
381 left += vp8_mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit);
385 *bestmv = this_mv;
389 this_mv.col += 8;
391 right += vp8_mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit);
395 *bestmv = this_mv;
400 this_mv.col = startmv.col
637 MV this_mv; local
1078 MV this_mv; local
1193 MV this_mv; local
1346 MV this_mv; local
1436 MV this_mv; local
    [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 += vp8_mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit);
350 *bestmv = this_mv;
354 this_mv.col += 8;
356 right += vp8_mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit);
360 *bestmv = this_mv;
365 this_mv.col = startmv.col
606 MV this_mv; local
883 MV this_mv; local
998 MV this_mv; local
1150 MV this_mv; local
1240 MV this_mv; local
    [all...]
rdopt.c 940 MV *this_mv, MV *best_ref_mv,
978 thismvcost = vp8_mv_bit_cost(this_mv, best_ref_mv, mvcost, 102);
981 *this_mv = col ? d[-1].bmi.mv.as_mv : vp8_left_bmi(mic, i)->mv.as_mv;
984 *this_mv = row ? d[-4].bmi.mv.as_mv : vp8_above_bmi(mic, i, mis)->mv.as_mv;
987 this_mv->row = this_mv->col = 0;
997 if (mv.row == this_mv->row && mv.col == this_mv->col)
1005 d->bmi.mv.as_mv = *this_mv;
    [all...]
  /external/libvpx/vp8/common/
findnearmv.c 97 int_mv this_mv; local
99 this_mv.as_int = left->mbmi.mv.as_int;
100 mv_bias(left, refframe, &this_mv, ref_frame_sign_bias);
102 if (this_mv.as_int != mv->as_int)
104 (++mv)->as_int = this_mv.as_int;
119 int_mv this_mv; local
121 this_mv.as_int = aboveleft->mbmi.mv.as_int;
122 mv_bias(aboveleft, refframe, &this_mv, ref_frame_sign_bias);
124 if (this_mv.as_int != mv->as_int)
126 (++mv)->as_int = this_mv.as_int
    [all...]

Completed in 1241 milliseconds