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

  /external/libvpx/libvpx/vp8/common/
reconinter.c 142 int mv_col = x->mode_info_context->mbmi.mv.as_mv.col; local
148 mv_col += 1 | (mv_col >> (sizeof(int) * CHAR_BIT - 1));
150 mv_col /= 2;
152 mv_col &= x->fullpixel_mask;
154 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3);
158 if ((mv_row | mv_col) & 7) {
159 x->subpixel_predict8x8(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr,
161 x->subpixel_predict8x8(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr,
243 int mv_col = x->mode_info_context->mbmi.mv.as_mv.col local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 479 int mv_col; local
514 mv_col = x->best_sse_mv.as_mv.col;
520 if ((unsigned int)(mv_row * mv_row + mv_col * mv_col) <=
547 mv_col = x->best_sse_mv.as_mv.col;
548 motion_magnitude2 = mv_row * mv_row + mv_col * mv_col;
rdopt.c 380 int mv_col = x->e_mbd.mode_info_context->mbmi.mv.as_mv.col; local
390 if (mv_col < 0) {
391 mv_col -= 1;
393 mv_col += 1;
397 mv_col /= 2;
399 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3);
403 if ((mv_row | mv_col) & 7) {
404 vpx_sub_pixel_variance8x8(uptr, pre_stride, mv_col & 7, mv_row & 7,
406 vpx_sub_pixel_variance8x8(vptr, pre_stride, mv_col & 7, mv_row & 7,
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_denoiser.c 330 int mv_col, mv_row; local
352 mv_col = ctx->best_sse_mv.as_mv.col;
354 motion_magnitude = mv_row * mv_row + mv_col * mv_col;

Completed in 495 milliseconds