Home | History | Annotate | Download | only in common

Lines Matching refs:pu1_src

199 void ih264_weighted_pred_luma(UWORD8 *pu1_src,
222 for(j = 0; j < wd; j++, pu1_src++, pu1_dst++)
223 *pu1_dst = CLIP_U8((wt * (*pu1_src) + i_ofst) >> log_wd);
225 pu1_src += src_strd;
233 for(j = 0; j < wd; j++, pu1_src++, pu1_dst++)
234 *pu1_dst = CLIP_U8(wt * (*pu1_src) + ofst);
236 pu1_src += src_strd;
273 void ih264_weighted_pred_chroma(UWORD8 *pu1_src,
303 for(j = 0; j < wd; j++, pu1_src++, pu1_dst++)
305 *pu1_dst = CLIP_U8((wt_u * (*pu1_src) + ofst_u) >> log_wd);
306 pu1_src++;
308 *pu1_dst = CLIP_U8((wt_v * (*pu1_src) + ofst_v) >> log_wd);
310 pu1_src += src_strd;
318 for(j = 0; j < wd; j++, pu1_src++, pu1_dst++)
320 *pu1_dst = CLIP_U8(wt_u * (*pu1_src) + ofst_u);
321 pu1_src++;
323 *pu1_dst = CLIP_U8(wt_v * (*pu1_src) + ofst_v);
325 pu1_src += src_strd;