• Home
  • Raw
  • Download

Lines Matching refs:ps_curr_mv

166         mv_t *ps_curr_mv;  in ih264e_motion_comp_luma()  local
177 ps_curr_mv = &ps_curr_pu->s_me_info[0].s_mv; in ih264e_motion_comp_luma()
182 ps_curr_mv = &ps_curr_pu->s_me_info[1].s_mv; in ih264e_motion_comp_luma()
194 ps_curr_mv = &ps_curr_pu->s_me_info[0].s_mv; in ih264e_motion_comp_luma()
201 ps_curr_mv = &ps_curr_pu->s_me_info[0].s_mv; in ih264e_motion_comp_luma()
208 u4_mv_x_full = ps_curr_mv->i2_mvx >> 2; in ih264e_motion_comp_luma()
209 u4_mv_y_full = ps_curr_mv->i2_mvy >> 2; in ih264e_motion_comp_luma()
212 u4_mv_x_hpel = (ps_curr_mv->i2_mvx & 0x2) >> 1; in ih264e_motion_comp_luma()
213 u4_mv_y_hpel = (ps_curr_mv->i2_mvy & 0x2) >> 1; in ih264e_motion_comp_luma()
216 u4_mv_x_qpel = (ps_curr_mv->i2_mvx & 0x1); in ih264e_motion_comp_luma()
217 u4_mv_y_qpel = (ps_curr_mv->i2_mvy & 0x1); in ih264e_motion_comp_luma()
334 mv_t *ps_curr_mv; in ih264e_motion_comp_chroma() local
340 ps_curr_mv = &ps_curr_pu->s_me_info[ps_curr_pu->b2_pred_mode].s_mv; in ih264e_motion_comp_chroma()
343 u4_mv_x = ps_curr_mv->i2_mvx >> 3; in ih264e_motion_comp_chroma()
344 u4_mv_y = ps_curr_mv->i2_mvy >> 3; in ih264e_motion_comp_chroma()
347 u4_mv_x_full = (ps_curr_mv->i2_mvx & 0x4) >> 2; in ih264e_motion_comp_chroma()
348 u4_mv_y_full = (ps_curr_mv->i2_mvy & 0x4) >> 2; in ih264e_motion_comp_chroma()
351 u4_mv_x_hpel = (ps_curr_mv->i2_mvx & 0x2) >> 1; in ih264e_motion_comp_chroma()
352 u4_mv_y_hpel = (ps_curr_mv->i2_mvy & 0x2) >> 1; in ih264e_motion_comp_chroma()
355 u4_mv_x_qpel = (ps_curr_mv->i2_mvx & 0x1); in ih264e_motion_comp_chroma()
356 u4_mv_y_qpel = (ps_curr_mv->i2_mvy & 0x1); in ih264e_motion_comp_chroma()
399 ps_curr_mv = &ps_curr_pu->s_me_info[i4_predmode].s_mv; in ih264e_motion_comp_chroma()
402 u4_mv_x = ps_curr_mv->i2_mvx >> 3; in ih264e_motion_comp_chroma()
403 u4_mv_y = ps_curr_mv->i2_mvy >> 3; in ih264e_motion_comp_chroma()
409 u4_mv_x_full = (ps_curr_mv->i2_mvx & 0x4) >> 2; in ih264e_motion_comp_chroma()
410 u4_mv_y_full = (ps_curr_mv->i2_mvy & 0x4) >> 2; in ih264e_motion_comp_chroma()
413 u4_mv_x_hpel = (ps_curr_mv->i2_mvx & 0x2) >> 1; in ih264e_motion_comp_chroma()
414 u4_mv_y_hpel = (ps_curr_mv->i2_mvy & 0x2) >> 1; in ih264e_motion_comp_chroma()
417 u4_mv_x_qpel = (ps_curr_mv->i2_mvx & 0x1); in ih264e_motion_comp_chroma()
418 u4_mv_y_qpel = (ps_curr_mv->i2_mvy & 0x1); in ih264e_motion_comp_chroma()