Searched refs:scaled_mv (Results 1 – 3 of 3) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_reconinter.c | 153 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/ |
D | vp9_decodeframe.c | 568 MV32 scaled_mv; in dec_build_inter_predictors() local 612 scaled_mv = vp9_scale_mv(&mv_q4, mi_x + x, mi_y + y, sf); in dec_build_inter_predictors() 624 scaled_mv.row = mv->row * (1 << (1 - pd->subsampling_y)); in dec_build_inter_predictors() 625 scaled_mv.col = mv->col * (1 << (1 - pd->subsampling_x)); in dec_build_inter_predictors() 628 subpel_x = scaled_mv.col & SUBPEL_MASK; in dec_build_inter_predictors() 629 subpel_y = scaled_mv.row & SUBPEL_MASK; in dec_build_inter_predictors() 633 x0 += scaled_mv.col >> SUBPEL_BITS; in dec_build_inter_predictors() 634 y0 += scaled_mv.row >> SUBPEL_BITS; in dec_build_inter_predictors() 635 x0_16 += scaled_mv.col; in dec_build_inter_predictors() 636 y0_16 += scaled_mv.row; in dec_build_inter_predictors() [all …]
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 485 MV32 scaled_mv, PadBlock *block, int subpel_x_mv, int subpel_y_mv, in update_extend_mc_border_params() argument 495 (is_scaled || scaled_mv.col || scaled_mv.row || (frame_width & 0x7) || in update_extend_mc_border_params() 520 MV32 scaled_mv, PadBlock block, in extend_mc_border() argument 526 if (update_extend_mc_border_params(sf, pre_buf, scaled_mv, &block, in extend_mc_border() 555 PadBlock *block, int mi_x, int mi_y, MV32 *scaled_mv, int *subpel_x_mv, in dec_calc_subpel_params() argument 597 *scaled_mv = av1_scale_mv(&temp_mv, (mi_x + x), (mi_y + y), sf); in dec_calc_subpel_params() 598 scaled_mv->row += SCALE_EXTRA_OFF; in dec_calc_subpel_params() 599 scaled_mv->col += SCALE_EXTRA_OFF; in dec_calc_subpel_params() 601 *subpel_x_mv = scaled_mv->col & SCALE_SUBPEL_MASK; in dec_calc_subpel_params() 602 *subpel_y_mv = scaled_mv->row & SCALE_SUBPEL_MASK; in dec_calc_subpel_params() [all …]
|