Home | History | Annotate | Download | only in decoder

Lines Matching refs:MV

496     struct buf_2d *dst_buf, const MV *mv, RefCntBuffer *ref_frame_buf,
518 const MV mv_q4 = clamp_mv_to_umv_border_sb(
519 xd, mv, bw, bh, pd->subsampling_x, pd->subsampling_y);
526 assert(mv_q4.row == mv->row * (1 << (1 - pd->subsampling_y)) &&
527 mv_q4.col == mv->col * (1 << (1 - pd->subsampling_x)));
542 // Scale the MV and incorporate the sub-pixel offset of the block
556 scaled_mv.row = mv->row * (1 << (1 - pd->subsampling_y));
557 scaled_mv.col = mv->col * (1 << (1 - pd->subsampling_x));
688 const MV mv = average_split_mvs(pd, mi, ref, i++);
691 pre_buf, dst_buf, &mv, ref_frame_buf,
697 const MV mv = mi->mv[ref].as_mv;
708 dst_buf, &mv, ref_frame_buf, is_scaled, ref);