Home
last modified time | relevance | path

Searched refs:scaled_mv (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_reconinter.c153 MV32 scaled_mv; in build_inter_predictors() local
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()
186 subpel_x = scaled_mv.col & SUBPEL_MASK; in build_inter_predictors()
187 subpel_y = scaled_mv.row & SUBPEL_MASK; in build_inter_predictors()
188 pre += (scaled_mv.row >> SUBPEL_BITS) * pre_buf->stride + in build_inter_predictors()
189 (scaled_mv.col >> SUBPEL_BITS); in build_inter_predictors()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c584 MV32 scaled_mv; in dec_build_inter_predictors() local
628 scaled_mv = vp9_scale_mv(&mv_q4, mi_x + x, mi_y + y, sf); in dec_build_inter_predictors()
640 scaled_mv.row = mv->row * (1 << (1 - pd->subsampling_y)); in dec_build_inter_predictors()
641 scaled_mv.col = mv->col * (1 << (1 - pd->subsampling_x)); in dec_build_inter_predictors()
644 subpel_x = scaled_mv.col & SUBPEL_MASK; in dec_build_inter_predictors()
645 subpel_y = scaled_mv.row & SUBPEL_MASK; in dec_build_inter_predictors()
649 x0 += scaled_mv.col >> SUBPEL_BITS; in dec_build_inter_predictors()
650 y0 += scaled_mv.row >> SUBPEL_BITS; in dec_build_inter_predictors()
651 x0_16 += scaled_mv.col; in dec_build_inter_predictors()
652 y0_16 += scaled_mv.row; in dec_build_inter_predictors()
[all …]
/external/libaom/libaom/av1/decoder/
Ddecodeframe.c470 MV32 scaled_mv, PadBlock *block, int subpel_x_mv, int subpel_y_mv, in update_extend_mc_border_params() argument
480 (is_scaled || scaled_mv.col || scaled_mv.row || (frame_width & 0x7) || in update_extend_mc_border_params()
505 MV32 scaled_mv, PadBlock block, in extend_mc_border() argument
511 if (update_extend_mc_border_params(sf, pre_buf, scaled_mv, &block, in extend_mc_border()
547 PadBlock *block, MV32 *scaled_mv, in dec_calc_subpel_params() argument
593 *scaled_mv = av1_scale_mv(&temp_mv, mi_x, mi_y, sf); in dec_calc_subpel_params()
594 scaled_mv->row += SCALE_EXTRA_OFF; in dec_calc_subpel_params()
595 scaled_mv->col += SCALE_EXTRA_OFF; in dec_calc_subpel_params()
597 *subpel_x_mv = scaled_mv->col & SCALE_SUBPEL_MASK; in dec_calc_subpel_params()
598 *subpel_y_mv = scaled_mv->row & SCALE_SUBPEL_MASK; in dec_calc_subpel_params()
[all …]