Searched refs:GET_MV_SUBPEL (Results 1 – 11 of 11) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | partition_strategy.h | 168 xd->mb_to_top_edge = -GET_MV_SUBPEL(mi_row * MI_SIZE); in set_offsets_for_motion_search() 170 GET_MV_SUBPEL((mi_params->mi_rows - mi_height - mi_row) * MI_SIZE); in set_offsets_for_motion_search() 171 xd->mb_to_left_edge = -GET_MV_SUBPEL(mi_col * MI_SIZE); in set_offsets_for_motion_search() 173 GET_MV_SUBPEL((mi_params->mi_cols - mi_width - mi_col) * MI_SIZE); in set_offsets_for_motion_search()
|
D | mcomp.h | 303 const int max_mv = GET_MV_SUBPEL(MAX_FULL_PEL_VAL); in av1_set_subpel_mv_search_range() 305 AOMMAX(GET_MV_SUBPEL(mv_limits->col_min), ref_mv->col - max_mv); in av1_set_subpel_mv_search_range() 307 AOMMIN(GET_MV_SUBPEL(mv_limits->col_max), ref_mv->col + max_mv); in av1_set_subpel_mv_search_range() 309 AOMMAX(GET_MV_SUBPEL(mv_limits->row_min), ref_mv->row - max_mv); in av1_set_subpel_mv_search_range() 311 AOMMIN(GET_MV_SUBPEL(mv_limits->row_max), ref_mv->row + max_mv); in av1_set_subpel_mv_search_range()
|
D | tpl_model.c | 756 xd->mb_to_top_edge = -GET_MV_SUBPEL(mi_row * MI_SIZE); in mc_flow_dispenser() 758 GET_MV_SUBPEL((mi_params->mi_rows - mi_height - mi_row) * MI_SIZE); in mc_flow_dispenser() 765 xd->mb_to_left_edge = -GET_MV_SUBPEL(mi_col * MI_SIZE); in mc_flow_dispenser() 767 GET_MV_SUBPEL(mi_params->mi_cols - mi_width - mi_col); in mc_flow_dispenser()
|
D | mcomp.c | 238 const MV diff = { GET_MV_SUBPEL(mv->row - ref_mv->row), in mvsad_err_cost() 239 GET_MV_SUBPEL(mv->col - ref_mv->col) }; in mvsad_err_cost() 1545 const MV dv = { GET_MV_SUBPEL(ref_block_hash.y - y_pos), in av1_intrabc_hash_search() 1546 GET_MV_SUBPEL(ref_block_hash.x - x_pos) }; in av1_intrabc_hash_search() 3087 const MV diff_mv = { GET_MV_SUBPEL(this_mv->row - ref_mv->row), in estimate_obmc_mvcost() 3088 GET_MV_SUBPEL(this_mv->col - ref_mv->col) }; in estimate_obmc_mvcost()
|
D | temporal_filter.c | 136 best_mv.as_mv.row = GET_MV_SUBPEL(mv_row); in tf_motion_search() 137 best_mv.as_mv.col = GET_MV_SUBPEL(mv_col); in tf_motion_search()
|
/external/libaom/libaom/av1/common/ |
D | mvref_common.h | 54 xd->mb_to_left_edge - GET_MV_SUBPEL(bw) - MV_BORDER, in clamp_mv_ref() 55 xd->mb_to_right_edge + GET_MV_SUBPEL(bw) + MV_BORDER, in clamp_mv_ref() 56 xd->mb_to_top_edge - GET_MV_SUBPEL(bh) - MV_BORDER, in clamp_mv_ref() 57 xd->mb_to_bottom_edge + GET_MV_SUBPEL(bh) + MV_BORDER in clamp_mv_ref()
|
D | mv.h | 25 #define GET_MV_SUBPEL(x) ((x)*8) macro 82 const MV subpel_mv = { (int16_t)GET_MV_SUBPEL(full_mv->row), in get_mv_from_fullmv() 83 (int16_t)GET_MV_SUBPEL(full_mv->col) }; in get_mv_from_fullmv()
|
D | av1_common_int.h | 1016 xd->mb_to_top_edge = -GET_MV_SUBPEL(mi_row * MI_SIZE); in set_mi_row_col() 1017 xd->mb_to_bottom_edge = GET_MV_SUBPEL((mi_rows - bh - mi_row) * MI_SIZE); in set_mi_row_col() 1018 xd->mb_to_left_edge = -GET_MV_SUBPEL((mi_col * MI_SIZE)); in set_mi_row_col() 1019 xd->mb_to_right_edge = GET_MV_SUBPEL((mi_cols - bw - mi_col) * MI_SIZE); in set_mi_row_col()
|
D | mvref_common.c | 1058 pts[0] = GET_MV_SUBPEL(x); in record_samples() 1059 pts[1] = GET_MV_SUBPEL(y); in record_samples() 1060 pts_inref[0] = GET_MV_SUBPEL(x) + mbmi->mv[0].as_mv.col; in record_samples() 1061 pts_inref[1] = GET_MV_SUBPEL(y) + mbmi->mv[0].as_mv.row; in record_samples()
|
D | reconinter.c | 1300 xd->mb_to_top_edge = GET_MV_SUBPEL(MI_SIZE * (-left_mi_row)); in av1_setup_build_prediction_by_left_pred() 1303 GET_MV_SUBPEL((xd->height - rel_mi_row - left_mi_height) * MI_SIZE); in av1_setup_build_prediction_by_left_pred()
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 719 xd->mb_to_bottom_edge += GET_MV_SUBPEL(this_height - pred_height); in dec_build_prediction_by_above_preds() 728 xd->mb_to_left_edge = -GET_MV_SUBPEL(xd->mi_col * MI_SIZE); in dec_build_prediction_by_above_preds() 730 xd->mb_to_bottom_edge -= GET_MV_SUBPEL(this_height - pred_height); in dec_build_prediction_by_above_preds() 773 xd->mb_to_right_edge += GET_MV_SUBPEL(this_width - pred_width); in dec_build_prediction_by_left_preds() 783 xd->mb_to_top_edge = -GET_MV_SUBPEL(xd->mi_row * MI_SIZE); in dec_build_prediction_by_left_preds() 784 xd->mb_to_right_edge -= GET_MV_SUBPEL(this_width - pred_width); in dec_build_prediction_by_left_preds()
|