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

  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 374 int_mv this_mv; local
409 this_mv.as_mv.row = startmv.as_mv.row;
410 this_mv.as_mv.col = ((startmv.as_mv.col - 8) | 4);
412 left = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit);
416 *bestmv = this_mv;
422 this_mv.as_mv.col += 8;
424 right = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit);
428 *bestmv = this_mv;
435 this_mv.as_mv.col = startmv.as_mv.col;
436 this_mv.as_mv.row = ((startmv.as_mv.row - 8) | 4)
685 int_mv this_mv; local
879 int_mv this_mv; local
1072 int_mv this_mv; local
1196 int_mv this_mv; local
1351 int_mv this_mv; local
1446 int_mv this_mv; local
1579 int_mv this_mv; local
1746 int_mv this_mv; local
1825 int_mv this_mv; local
    [all...]
pickinter.h 30 int_mv this_mv);
rdopt.c 955 int_mv *this_mv, int_mv *best_ref_mv,
994 thismvcost = vp8_mv_bit_cost(this_mv, best_ref_mv, mvcost, 102);
997 this_mv->as_int = col ? d[-1].bmi.mv.as_int : left_block_mv(mic, i);
1000 this_mv->as_int = row ? d[-4].bmi.mv.as_int : above_block_mv(mic, i, mis);
1003 this_mv->as_int = 0;
1016 if (left_mv.as_int == this_mv->as_int)
1023 d->bmi.mv.as_int = this_mv->as_int;
1026 x->partition_info->bmi[i].mv.as_int = this_mv->as_int;
    [all...]
pickinter.c 195 int_mv this_mv)
205 int xoffset = this_mv.as_mv.col & 7;
206 int yoffset = this_mv.as_mv.row & 7;
208 in_what += (this_mv.as_mv.row >> 3) * pre_stride + (this_mv.as_mv.col >> 3);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
mcomp.c 370 int_mv this_mv; local
405 this_mv.as_mv.row = startmv.as_mv.row;
406 this_mv.as_mv.col = ((startmv.as_mv.col - 8) | 4);
408 left = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit);
412 *bestmv = this_mv;
418 this_mv.as_mv.col += 8;
420 right = thismse + mv_err_cost(&this_mv, ref_mv, mvcost, error_per_bit);
424 *bestmv = this_mv;
431 this_mv.as_mv.col = startmv.as_mv.col;
432 this_mv.as_mv.row = ((startmv.as_mv.row - 8) | 4)
681 int_mv this_mv; local
875 int_mv this_mv; local
1066 int_mv this_mv; local
1190 int_mv this_mv; local
1345 int_mv this_mv; local
1441 int_mv this_mv; local
1575 int_mv this_mv; local
1742 int_mv this_mv; local
1822 int_mv this_mv; local
    [all...]
pickinter.h 30 int_mv this_mv);
pickinter.c 68 int_mv this_mv)
78 int xoffset = this_mv.as_mv.col & 7;
79 int yoffset = this_mv.as_mv.row & 7;
81 in_what += (this_mv.as_mv.row >> 3) * pre_stride + (this_mv.as_mv.col >> 3);
    [all...]
rdopt.c 953 int_mv *this_mv, int_mv *best_ref_mv,
992 thismvcost = vp8_mv_bit_cost(this_mv, best_ref_mv, mvcost, 102);
995 this_mv->as_int = col ? d[-1].bmi.mv.as_int : (uint32_t)left_block_mv(mic, i);
998 this_mv->as_int = row ? d[-4].bmi.mv.as_int : (uint32_t)above_block_mv(mic, i, mis);
1001 this_mv->as_int = 0;
1014 if (left_mv.as_int == this_mv->as_int)
1021 d->bmi.mv.as_int = this_mv->as_int;
1024 x->partition_info->bmi[i].mv.as_int = this_mv->as_int;
    [all...]
  /external/libvpx/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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_mcomp.c 482 thissad += mvsad_err_cost(&this_mv, &fcenter_mv, \
547 const MV this_mv = {br + candidates[t][i].row, local
550 get_buf_from_mv(in_what, &this_mv),
556 const MV this_mv = {br + candidates[t][i].row, local
558 if (!is_mv_in(x, &this_mv))
561 get_buf_from_mv(in_what, &this_mv),
590 const MV this_mv = {br + candidates[s][i].row, local
593 get_buf_from_mv(in_what, &this_mv),
599 const MV this_mv = {br + candidates[s][i].row, local
601 if (!is_mv_in(x, &this_mv))
628 const MV this_mv = {br + candidates[s][next_chkpts_indices[i]].row, local
637 const MV this_mv = {br + candidates[s][next_chkpts_indices[i]].row, local
666 const MV this_mv = {br + neighbors[i].row, local
675 const MV this_mv = {br + neighbors[i].row, local
941 const MV this_mv = {ref_row + tr, ref_col + tc + i}; local
959 const MV this_mv = {ref_row + tr, ref_col + tc + i}; local
1031 const MV this_mv = {best_mv->row + ss[i].mv.row, local
1059 const MV this_mv = {best_mv->row + ss[best_site].mv.row, local
1167 const MV this_mv = {best_mv->row + ss[i].mv.row, local
1182 const MV this_mv = {best_mv->row + ss[i].mv.row, local
1210 const MV this_mv = {best_mv->row + ss[best_site].mv.row, local
1351 MV this_mv; local
1443 MV this_mv; local
1649 const MV this_mv = {ref_mv->row + neighbors[j].row, local
1662 const MV this_mv = {ref_mv->row + neighbors[j].row, local
    [all...]
vp9_rdopt.c 2149 int_mv this_mv; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 704 MV this_mv; local
705 this_mv.row = tr;
706 this_mv.col = tc;
714 mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit);
735 MV this_mv = {tr, tc}; local
743 mv_err_cost(&this_mv, ref_mv, mvjcost, mvcost, error_per_bit);
813 thissad += mvsad_err_cost(x, &this_mv, &fcenter_mv, sad_per_bit);\
838 MV this_mv; local
842 this_mv.row = br;
843 this_mv.col = bc
850 const MV this_mv = {br + neighbors[i].row, local
861 const MV this_mv = {br + neighbors[i].row, local
927 const MV this_mv = {br + candidates[t][i].row, local
936 const MV this_mv = {br + candidates[t][i].row, local
970 const MV this_mv = {br + candidates[s][i].row, local
979 const MV this_mv = {br + candidates[s][i].row, local
1008 const MV this_mv = {br + candidates[s][next_chkpts_indices[i]].row, local
1017 const MV this_mv = {br + candidates[s][next_chkpts_indices[i]].row, local
1106 const MV this_mv = {br + candidates[t][i].row, local
1115 const MV this_mv = {br + candidates[t][i].row, local
1149 const MV this_mv = {br + candidates[s][i].row, local
1158 const MV this_mv = {br + candidates[s][i].row, local
1187 const MV this_mv = {br + candidates[s][next_chkpts_indices[i]].row, local
1196 const MV this_mv = {br + candidates[s][next_chkpts_indices[i]].row, local
1221 const MV this_mv = {br + candidates[s][i].row, local
1231 const MV this_mv = {br + candidates[s][i].row, local
1261 const MV this_mv = {br + candidates[s][next_chkpts_indices[i]].row, local
1271 const MV this_mv = {br + candidates[s][next_chkpts_indices[i]].row, local
1306 const MV this_mv = { br + neighbors[i].row, local
1314 const MV this_mv = {br + neighbors[i].row, local
1327 const MV this_mv = {br + neighbors[i].row, local
1674 const MV this_mv = {best_mv->row + ss[i].mv.row, local
1688 const MV this_mv = {best_mv->row + ss[i].mv.row, local
1714 const MV this_mv = {best_mv->row + ss[best_site].mv.row, local
1834 MV this_mv; local
    [all...]
vp9_rd.c 482 const MV *this_mv = &pred_mv[i]; local
487 fp_row = (this_mv->row + 3 + (this_mv->row >= 0)) >> 3;
488 fp_col = (this_mv->col + 3 + (this_mv->col >= 0)) >> 3;
489 max_mv = VPXMAX(max_mv, VPXMAX(abs(this_mv->row), abs(this_mv->col)) >> 3);
vp9_rdopt.c     [all...]
vp9_encodeframe.c 2461 MOTION_DIRECTION this_mv; local
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
decodemv.c 387 int_mv this_mv; local
389 this_mv.as_int = left->mbmi.mv.as_int;
391 mbmi->ref_frame, &this_mv, ref_frame_sign_bias);
393 if (this_mv.as_int != nmv->as_int)
395 (++nmv)->as_int = this_mv.as_int;
410 int_mv this_mv; local
412 this_mv.as_int = aboveleft->mbmi.mv.as_int;
414 mbmi->ref_frame, &this_mv, ref_frame_sign_bias);
416 if (this_mv.as_int != nmv->as_int)
418 (++nmv)->as_int = this_mv.as_int
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
decodemv.c 387 int_mv this_mv; local
389 this_mv.as_int = left->mbmi.mv.as_int;
391 mbmi->ref_frame, &this_mv, ref_frame_sign_bias);
393 if (this_mv.as_int != nmv->as_int)
395 (++nmv)->as_int = this_mv.as_int;
410 int_mv this_mv; local
412 this_mv.as_int = aboveleft->mbmi.mv.as_int;
414 mbmi->ref_frame, &this_mv, ref_frame_sign_bias);
416 if (this_mv.as_int != nmv->as_int)
418 (++nmv)->as_int = this_mv.as_int
    [all...]

Completed in 1201 milliseconds