/external/libvpx/vp8/encoder/ |
mcomp.c | 776 MV *best_mv, 894 best_mv->row = br; 895 best_mv->col = bc; 897 return vfp->vf(src, src_stride, PRE(br, bc), d->pre_stride, &thiserr) + mv_err_cost(best_mv, center_mv, mvcost, error_per_bit) ; 913 MV *best_mv, 967 best_mv->row = ref_row; 968 best_mv->col = ref_col; 975 this_row_offset = best_mv->row + ss[i].mv.row; 976 this_col_offset = best_mv->col + ss[i].mv.col; 1004 best_mv->row += ss[best_site].mv.row 1189 MV *best_mv = &d->bmi.mv.as_mv; local 1279 MV *best_mv = &d->bmi.mv.as_mv; local 1402 MV *best_mv = &d->bmi.mv.as_mv; local [all...] |
mcomp.h | 40 MV *best_mv, 80 MV *best_mv, \
|
bitstream.c | 960 MV best_mv; local 977 vp8_find_near_mvs(xd, m, &n1, &n2, &best_mv, ct, rf, cpi->common.ref_frame_sign_bias); 1000 write_mv(w, &mi->mv.as_mv, &best_mv, mvc); 1034 write_mv(w, &b->mv.as_mv, &best_mv, (const MV_CONTEXT *) mvc); [all...] |
firstpass.c | 426 static void 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 ) 456 best_mv->row = tmp_mv.row; 457 best_mv->col = tmp_mv.col; 479 best_mv->row = tmp_mv.row; 480 best_mv->col = tmp_mv.col; [all...] |
/external/libvpx/vp8/common/ |
findnearmv.c | 30 MV *best_mv, 134 *best_mv = near_mvs[0].as_mv; 140 vp8_clamp_mv(best_mv, xd); /*TODO: move this up before the copy*/
|
/external/libvpx/vp8/decoder/ |
decodemv.c | 328 MV nearest, nearby, best_mv; local 335 vp8_find_near_mvs(&pbi->mb, mi, &nearest, &nearby, &best_mv, rct, mbmi->ref_frame, pbi->common.ref_frame_sign_bias); 364 mv->row += best_mv.row; 365 mv->col += best_mv.col; 445 mv->row += best_mv.row; 446 mv->col += best_mv.col;
|