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