Home | History | Annotate | Download | only in common

Lines Matching full:pi2_src

58 *  Does uni-weighted prediction on the array pointed by  pi2_src and stores
65 * @param[in] pi2_src
106 void ihevc_weighted_pred_uni(WORD16 *pi2_src,
124 i4_tmp = (pi2_src[col] + lvl_shift) * wgt0;
131 pi2_src += src_strd;
141 * Does chroma uni-weighted prediction on array pointed by pi2_src and stores
148 * @param[in] pi2_src
189 void ihevc_weighted_pred_chroma_uni(WORD16 *pi2_src,
209 i4_tmp = (pi2_src[col] + lvl_shift) * wgt0_cb;
215 i4_tmp = (pi2_src[col + 1] + lvl_shift) * wgt0_cr;
222 pi2_src += src_strd;