Home
last modified time | relevance | path

Searched refs:mv_q4 (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_reconinter.c29 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2, in vp9_highbd_build_inter_predictor() local
31 MV32 mv = vp9_scale_mv(&mv_q4, x, y, sf); in vp9_highbd_build_inter_predictor()
49 const MV mv_q4 = { is_q4 ? src_mv->row : src_mv->row * 2, in vp9_build_inter_predictor() local
51 MV32 mv = vp9_scale_mv(&mv_q4, x, y, sf); in vp9_build_inter_predictor()
149 const MV mv_q4 = clamp_mv_to_umv_border_sb( in build_inter_predictors() local
164 assert(mv_q4.row == mv.row * (1 << (1 - pd->subsampling_y)) && in build_inter_predictors()
165 mv_q4.col == mv.col * (1 << (1 - pd->subsampling_x))); in build_inter_predictors()
177 scaled_mv = vp9_scale_mv(&mv_q4, mi_x + x, mi_y + y, sf); in build_inter_predictors()
182 scaled_mv.row = mv_q4.row; in build_inter_predictors()
183 scaled_mv.col = mv_q4.col; in build_inter_predictors()
/external/libaom/libaom/av1/encoder/
Dinterp_search.c581 const MV mv_q4 = clamp_mv_to_umv_border_sb( in calc_interp_skip_pred_flag() local
583 const int sub_x = (mv_q4.col & SUBPEL_MASK) << SCALE_EXTRA_BITS; in calc_interp_skip_pred_flag()
584 const int sub_y = (mv_q4.row & SUBPEL_MASK) << SCALE_EXTRA_BITS; in calc_interp_skip_pred_flag()
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c604 const MV mv_q4 = clamp_mv_to_umv_border_sb( in dec_calc_subpel_params() local
608 subpel_params->subpel_x = (mv_q4.col & SUBPEL_MASK) << SCALE_EXTRA_BITS; in dec_calc_subpel_params()
609 subpel_params->subpel_y = (mv_q4.row & SUBPEL_MASK) << SCALE_EXTRA_BITS; in dec_calc_subpel_params()
612 pos_x += mv_q4.col; in dec_calc_subpel_params()
613 pos_y += mv_q4.row; in dec_calc_subpel_params()
621 scaled_mv->row = mv_q4.row; in dec_calc_subpel_params()
622 scaled_mv->col = mv_q4.col; in dec_calc_subpel_params()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c602 const MV mv_q4 = clamp_mv_to_umv_border_sb( in dec_build_inter_predictors() local
610 assert(mv_q4.row == mv->row * (1 << (1 - pd->subsampling_y)) && in dec_build_inter_predictors()
611 mv_q4.col == mv->col * (1 << (1 - pd->subsampling_x))); in dec_build_inter_predictors()
628 scaled_mv = vp9_scale_mv(&mv_q4, mi_x + x, mi_y + y, sf); in dec_build_inter_predictors()