Home
last modified time | relevance | path

Searched refs:mv_col (Results 1 – 13 of 13) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dtemporal_filter.c39 unsigned char *v_mb_ptr, int stride, int mv_row, int mv_col, in vp8_temporal_filter_predictors_mb_c() argument
45 yptr = y_mb_ptr + (mv_row >> 3) * stride + (mv_col >> 3); in vp8_temporal_filter_predictors_mb_c()
47 if ((mv_row | mv_col) & 7) { in vp8_temporal_filter_predictors_mb_c()
48 x->subpixel_predict16x16(yptr, stride, mv_col & 7, mv_row & 7, &pred[0], in vp8_temporal_filter_predictors_mb_c()
56 mv_col >>= 1; in vp8_temporal_filter_predictors_mb_c()
58 offset = (mv_row >> 3) * stride + (mv_col >> 3); in vp8_temporal_filter_predictors_mb_c()
62 if ((mv_row | mv_col) & 7) { in vp8_temporal_filter_predictors_mb_c()
63 x->subpixel_predict8x8(uptr, stride, mv_col & 7, mv_row & 7, &pred[256], 8); in vp8_temporal_filter_predictors_mb_c()
64 x->subpixel_predict8x8(vptr, stride, mv_col & 7, mv_row & 7, &pred[320], 8); in vp8_temporal_filter_predictors_mb_c()
Ddenoising.c478 int mv_col; in vp8_denoiser_denoise_mb() local
513 mv_col = x->best_sse_mv.as_mv.col; in vp8_denoiser_denoise_mb()
519 if ((unsigned int)(mv_row * mv_row + mv_col * mv_col) <= in vp8_denoiser_denoise_mb()
546 mv_col = x->best_sse_mv.as_mv.col; in vp8_denoiser_denoise_mb()
547 motion_magnitude2 = mv_row * mv_row + mv_col * mv_col; in vp8_denoiser_denoise_mb()
Drdopt.c380 int mv_col = x->e_mbd.mode_info_context->mbmi.mv.as_mv.col; in VP8_UVSSE() local
390 if (mv_col < 0) { in VP8_UVSSE()
391 mv_col -= 1; in VP8_UVSSE()
393 mv_col += 1; in VP8_UVSSE()
397 mv_col /= 2; in VP8_UVSSE()
399 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3); in VP8_UVSSE()
403 if ((mv_row | mv_col) & 7) { in VP8_UVSSE()
404 vpx_sub_pixel_variance8x8(uptr, pre_stride, mv_col & 7, mv_row & 7, in VP8_UVSSE()
406 vpx_sub_pixel_variance8x8(vptr, pre_stride, mv_col & 7, mv_row & 7, in VP8_UVSSE()
/external/libvpx/libvpx/vp8/common/
Dreconinter.c142 int mv_col = x->mode_info_context->mbmi.mv.as_mv.col; in vp8_build_inter16x16_predictors_mbuv() local
148 mv_col += 1 | (mv_col >> (sizeof(int) * CHAR_BIT - 1)); in vp8_build_inter16x16_predictors_mbuv()
150 mv_col /= 2; in vp8_build_inter16x16_predictors_mbuv()
152 mv_col &= x->fullpixel_mask; in vp8_build_inter16x16_predictors_mbuv()
154 offset = (mv_row >> 3) * pre_stride + (mv_col >> 3); in vp8_build_inter16x16_predictors_mbuv()
158 if ((mv_row | mv_col) & 7) { in vp8_build_inter16x16_predictors_mbuv()
159 x->subpixel_predict8x8(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, in vp8_build_inter16x16_predictors_mbuv()
161 x->subpixel_predict8x8(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, in vp8_build_inter16x16_predictors_mbuv()
243 int mv_col = x->mode_info_context->mbmi.mv.as_mv.col; in vp8_build_inter16x16_predictors_mby() local
247 ptr = ptr_base + (mv_row >> 3) * pre_stride + (mv_col >> 3); in vp8_build_inter16x16_predictors_mby()
[all …]
/external/libaom/libaom/av1/encoder/
Dpartition_strategy.c626 const float mv_col = (float)(x->best_mv.as_mv.col / 8); in av1_get_max_min_partition_features() local
629 const float abs_mv_col = fabsf(mv_col); in av1_get_max_min_partition_features()
633 sum_mv_col_sq += mv_col * mv_col; in av1_get_max_min_partition_features()
634 sum_mv_col += mv_col; in av1_get_max_min_partition_features()
Dtemporal_filter.c52 int stride, int uv_block_width, int uv_block_height, int mv_row, int mv_col, in temporal_filter_predictors_mb_c() argument
74 assert(mv_row >= INT16_MIN && mv_row <= INT16_MAX && mv_col >= INT16_MIN && in temporal_filter_predictors_mb_c()
75 mv_col <= INT16_MAX); in temporal_filter_predictors_mb_c()
76 const MV mv = { (int16_t)mv_row, (int16_t)mv_col }; in temporal_filter_predictors_mb_c()
Dtpl_model.c289 int mv_col = mv.col >> 3; in tpl_model_update_b() local
292 int ref_pos_col = mi_col * MI_SIZE + mv_col; in tpl_model_update_b()
/external/libvpx/libvpx/tools/non_greedy_mv/
Dnon_greedy_mv.py112 mv_col = int(word_ls[3]) / 8.
113 mv_ls.append([col, row, mv_col, mv_row])
/external/libvpx/libvpx/vp9/encoder/
Dvp9_denoiser.c341 int mv_col, mv_row; in vp9_denoiser_denoise() local
364 mv_col = ctx->best_sse_mv.as_mv.col; in vp9_denoiser_denoise()
366 motion_magnitude = mv_row * mv_row + mv_col * mv_col; in vp9_denoiser_denoise()
Dvp9_pickmode.c1256 BLOCK_SIZE bsize, int mv_row, int mv_col, in vp9_NEWMV_diff_bias() argument
1294 col_diff = (al_mv_average_col - mv_col); in vp9_NEWMV_diff_bias()
1305 is_last_frame && mv_row < 8 && mv_row > -8 && mv_col < 8 && mv_col > -8) in vp9_NEWMV_diff_bias()
1308 is_last_frame && mv_row < 16 && mv_row > -16 && mv_col < 16 && in vp9_NEWMV_diff_bias()
1309 mv_col > -16) in vp9_NEWMV_diff_bias()
Dvp9_temporal_filter.c40 int stride, int uv_block_width, int uv_block_height, int mv_row, int mv_col, in temporal_filter_predictors_mb_c() argument
61 const MV mv = { mv_row, mv_col }; in temporal_filter_predictors_mb_c()
Dvp9_encoder.c5708 int mv_col = mv.col >> 3; local
5711 int ref_pos_col = mi_col * MI_SIZE + mv_col;
/external/libaom/libaom/av1/common/
Dmvref_common.c32 const int mv_col = in get_mv_projection() local
37 output->col = (int16_t)clamp(mv_col, clamp_min, clamp_max); in get_mv_projection()