HomeSort by relevance Sort by last modified time
    Searched full:best_mv (Results 1 - 6 of 6) sorted by null

  /external/libvpx/vp8/encoder/
mcomp.c 775 MV *best_mv,
891 best_mv->row = br;
892 best_mv->col = bc;
910 MV *best_mv,
961 best_mv->row = ref_row;
962 best_mv->col = ref_col;
971 this_row_offset = best_mv->row + ss[i].mv.row;
972 this_col_offset = best_mv->col + ss[i].mv.col;
1000 best_mv->row += ss[best_site].mv.row;
1001 best_mv->col += ss[best_site].mv.col
1184 MV *best_mv = &d->bmi.mv.as_mv; local
1274 MV *best_mv = &d->bmi.mv.as_mv; local
1399 MV *best_mv = &d->bmi.mv.as_mv; local
    [all...]
mcomp.h 41 MV *best_mv,
80 MV *best_mv, \
bitstream.c 970 MV best_mv; local
987 vp8_find_near_mvs(xd, m, &n1, &n2, &best_mv, ct, rf, cpi->common.ref_frame_sign_bias);
1010 write_mv(w, &mi->mv.as_mv, &best_mv, mvc);
1044 write_mv(w, &b->mv.as_mv, &best_mv, (const MV_CONTEXT *) mvc);
    [all...]
firstpass.c 452 void vp8_first_pass_motion_search(VP8_COMP *cpi, MACROBLOCK *x, MV *ref_mv, MV *best_mv, YV12_BUFFER_CONFIG *recon_buffer, int *best_motion_err, int recon_yoffset )
482 best_mv->row = tmp_mv.row;
483 best_mv->col = tmp_mv.col;
505 best_mv->row = tmp_mv.row;
506 best_mv->col = tmp_mv.col;
    [all...]
  /external/libvpx/vp8/common/
findnearmv.c 61 MV *best_mv,
165 *best_mv = near_mvs[0].as_mv;
171 vp8_clamp_mv(best_mv, xd); /*TODO: move this up before the copy*/
  /external/libvpx/vp8/decoder/
decodemv.c 335 MV nearest, nearby, best_mv; local
342 vp8_find_near_mvs(&pbi->mb, mi, &nearest, &nearby, &best_mv, rct, mbmi->ref_frame, pbi->common.ref_frame_sign_bias);
371 mv->row += best_mv.row;
372 mv->col += best_mv.col;
452 mv->row += best_mv.row;
453 mv->col += best_mv.col;

Completed in 1042 milliseconds