• Home
  • Raw
  • Download

Lines Matching refs:mv

233 …ps_pic_buf_l0 = (pic_buf_t *)((ps_slice_hdr->as_ref_pic_list0[ps_pu->mv.i1_l0_ref_idx].pv_pic_buf)…  in ihevcd_inter_pred_ctb()
238 luma_weight_l0 = ps_slice_hdr->s_wt_ofst.i2_luma_weight_l0[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
239 … chroma_weight_l0_cb = ps_slice_hdr->s_wt_ofst.i2_chroma_weight_l0_cb[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
240 … chroma_weight_l0_cr = ps_slice_hdr->s_wt_ofst.i2_chroma_weight_l0_cr[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
242 luma_offset_l0 = ps_slice_hdr->s_wt_ofst.i2_luma_offset_l0[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
243 … chroma_offset_l0_cb = ps_slice_hdr->s_wt_ofst.i2_chroma_offset_l0_cb[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
244 … chroma_offset_l0_cr = ps_slice_hdr->s_wt_ofst.i2_chroma_offset_l0_cr[ps_pu->mv.i1_l0_ref_idx]; in ihevcd_inter_pred_ctb()
250 …ps_pic_buf_l1 = (pic_buf_t *)((ps_slice_hdr->as_ref_pic_list1[ps_pu->mv.i1_l1_ref_idx].pv_pic_buf)… in ihevcd_inter_pred_ctb()
254 luma_weight_l1 = ps_slice_hdr->s_wt_ofst.i2_luma_weight_l1[ps_pu->mv.i1_l1_ref_idx]; in ihevcd_inter_pred_ctb()
255 … chroma_weight_l1_cb = ps_slice_hdr->s_wt_ofst.i2_chroma_weight_l1_cb[ps_pu->mv.i1_l1_ref_idx]; in ihevcd_inter_pred_ctb()
256 … chroma_weight_l1_cr = ps_slice_hdr->s_wt_ofst.i2_chroma_weight_l1_cr[ps_pu->mv.i1_l1_ref_idx]; in ihevcd_inter_pred_ctb()
258 luma_offset_l1 = ps_slice_hdr->s_wt_ofst.i2_luma_offset_l1[ps_pu->mv.i1_l1_ref_idx]; in ihevcd_inter_pred_ctb()
259 … chroma_offset_l1_cb = ps_slice_hdr->s_wt_ofst.i2_chroma_offset_l1_cb[ps_pu->mv.i1_l1_ref_idx]; in ihevcd_inter_pred_ctb()
260 … chroma_offset_l1_cr = ps_slice_hdr->s_wt_ofst.i2_chroma_offset_l1_cr[ps_pu->mv.i1_l1_ref_idx]; in ihevcd_inter_pred_ctb()
271 WORD32 mv; in ihevcd_inter_pred_ctb() local
274mv = CLIP3(ps_pu->mv.s_l0_mv.i2_mvx, (-((MAX_CTB_SIZE + pu_x + 7) << 2)), ((ps_sps->i2_pic_width_i… in ihevcd_inter_pred_ctb()
275 ai2_xint[0] = pu_x + (mv >> 2); in ihevcd_inter_pred_ctb()
276 ai2_xfrac[0] = mv & 3; in ihevcd_inter_pred_ctb()
278mv = CLIP3(ps_pu->mv.s_l0_mv.i2_mvy, (-((MAX_CTB_SIZE + pu_y + 7) << 2)), ((ps_sps->i2_pic_height_… in ihevcd_inter_pred_ctb()
279 ai2_yint[0] = pu_y + (mv >> 2); in ihevcd_inter_pred_ctb()
280 ai2_yfrac[0] = mv & 3; in ihevcd_inter_pred_ctb()
293mv = CLIP3(ps_pu->mv.s_l1_mv.i2_mvx, (-((MAX_CTB_SIZE + pu_x + 7) << 2)), ((ps_sps->i2_pic_width_i… in ihevcd_inter_pred_ctb()
294 ai2_xint[1] = pu_x + (mv >> 2); in ihevcd_inter_pred_ctb()
295 ai2_xfrac[1] = mv & 3; in ihevcd_inter_pred_ctb()
297mv = CLIP3(ps_pu->mv.s_l1_mv.i2_mvy, (-((MAX_CTB_SIZE + pu_y + 7) << 2)), ((ps_sps->i2_pic_height_… in ihevcd_inter_pred_ctb()
298 ai2_yint[1] = pu_y + (mv >> 2); in ihevcd_inter_pred_ctb()
299 ai2_yfrac[1] = mv & 3; in ihevcd_inter_pred_ctb()
316 WORD32 mv; in ihevcd_inter_pred_ctb() local
321mv = CLIP3(ps_pu->mv.s_l0_mv.i2_mvx, (-((MAX_CTB_SIZE + pu_x + 7) << 2)), ((ps_sps->i2_pic_width_i… in ihevcd_inter_pred_ctb()
322 ai2_xint[0] = (pu_x / 2 + (mv >> 3)) << 1; in ihevcd_inter_pred_ctb()
323 ai2_xfrac[0] = mv & 7; in ihevcd_inter_pred_ctb()
325mv = CLIP3(ps_pu->mv.s_l0_mv.i2_mvy, (-((MAX_CTB_SIZE + pu_y + 7) << 2)), ((ps_sps->i2_pic_height_… in ihevcd_inter_pred_ctb()
326 ai2_yint[0] = pu_y / 2 + (mv >> 3); in ihevcd_inter_pred_ctb()
327 ai2_yfrac[0] = mv & 7; in ihevcd_inter_pred_ctb()
339mv = CLIP3(ps_pu->mv.s_l1_mv.i2_mvx, (-((MAX_CTB_SIZE + pu_x + 7) << 2)), ((ps_sps->i2_pic_width_i… in ihevcd_inter_pred_ctb()
340 ai2_xint[1] = (pu_x / 2 + (mv >> 3)) << 1; in ihevcd_inter_pred_ctb()
341 ai2_xfrac[1] = mv & 7; in ihevcd_inter_pred_ctb()
343mv = CLIP3(ps_pu->mv.s_l1_mv.i2_mvy, (-((MAX_CTB_SIZE + pu_y + 7) << 2)), ((ps_sps->i2_pic_height_… in ihevcd_inter_pred_ctb()
344 ai2_yint[1] = pu_y / 2 + (mv >> 3); in ihevcd_inter_pred_ctb()
345 ai2_yfrac[1] = mv & 7; in ihevcd_inter_pred_ctb()