/external/libvpx/libvpx/vp8/encoder/ |
D | temporal_filter.c | 39 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()
|
D | denoising.c | 478 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()
|
D | rdopt.c | 380 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/ |
D | reconinter.c | 142 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/libvpx/libvpx/tools/non_greedy_mv/ |
D | non_greedy_mv.py | 123 mv_col = int(word_ls[3]) / 8. 124 mv_ls.append([col, row, mv_col, mv_row])
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_denoiser.c | 340 int mv_col, mv_row; in vp9_denoiser_denoise() local 363 mv_col = ctx->best_sse_mv.as_mv.col; in vp9_denoiser_denoise() 365 motion_magnitude = mv_row * mv_row + mv_col * mv_col; in vp9_denoiser_denoise()
|
D | vp9_pickmode.c | 1291 BLOCK_SIZE bsize, int mv_row, int mv_col, in vp9_NEWMV_diff_bias() argument 1329 col_diff = (al_mv_average_col - mv_col); in vp9_NEWMV_diff_bias() 1340 is_last_frame && mv_row < 8 && mv_row > -8 && mv_col < 8 && mv_col > -8) in vp9_NEWMV_diff_bias() 1343 is_last_frame && mv_row < 16 && mv_row > -16 && mv_col < 16 && in vp9_NEWMV_diff_bias() 1344 mv_col > -16) in vp9_NEWMV_diff_bias()
|
D | vp9_temporal_filter.c | 50 int stride, int uv_block_width, int uv_block_height, int mv_row, int mv_col, in temporal_filter_predictors_mb_c() argument 71 const MV mv = { mv_row, mv_col }; in temporal_filter_predictors_mb_c()
|
D | vp9_encoder.c | 6111 int mv_col = mv.col >> 3; local 6114 int ref_pos_col = mi_col * MI_SIZE + mv_col;
|
/external/libaom/libaom/av1/encoder/ |
D | partition_strategy.c | 670 const float mv_col = (float)(best_mv.as_mv.col / 8); in av1_get_max_min_partition_features() local 673 const float abs_mv_col = fabsf(mv_col); in av1_get_max_min_partition_features() 677 sum_mv_col_sq += mv_col * mv_col; in av1_get_max_min_partition_features() 678 sum_mv_col += mv_col; in av1_get_max_min_partition_features()
|
D | temporal_filter.c | 135 const int mv_col = best_mv.as_mv.col; in tf_motion_search() local 137 best_mv.as_mv.col = GET_MV_SUBPEL(mv_col); in tf_motion_search() 138 const int mv_offset = mv_row * y_stride + mv_col; in tf_motion_search()
|
D | nonrd_pickmode.c | 985 int mv_col, int speed, uint32_t spatial_variance) { argument 1021 col_diff = al_mv_average_col - mv_col; 1031 (mv_row > 64 || mv_row < -64 || mv_col > 64 || mv_col < -64))
|
/external/libaom/libaom/av1/common/ |
D | mvref_common.c | 32 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()
|