Home
last modified time | relevance | path

Searched refs:i4_tmp (Results 1 – 2 of 2) sorted by relevance

/external/libhevc/common/
Dihevc_weighted_pred.c118 WORD32 i4_tmp; in ihevc_weighted_pred_uni() local
124 i4_tmp = (pi2_src[col] + lvl_shift) * wgt0; in ihevc_weighted_pred_uni()
125 i4_tmp += 1 << (shift - 1); in ihevc_weighted_pred_uni()
126 i4_tmp = (i4_tmp >> shift) + off0; in ihevc_weighted_pred_uni()
128 pu1_dst[col] = CLIP_U8(i4_tmp); in ihevc_weighted_pred_uni()
203 WORD32 i4_tmp; in ihevc_weighted_pred_chroma_uni() local
209 i4_tmp = (pi2_src[col] + lvl_shift) * wgt0_cb; in ihevc_weighted_pred_chroma_uni()
210 i4_tmp += 1 << (shift - 1); in ihevc_weighted_pred_chroma_uni()
211 i4_tmp = (i4_tmp >> shift) + off0_cb; in ihevc_weighted_pred_chroma_uni()
213 pu1_dst[col] = CLIP_U8(i4_tmp); in ihevc_weighted_pred_chroma_uni()
[all …]
Dihevc_inter_pred_filters.c532 WORD32 i4_tmp; in ihevc_inter_pred_luma_vert_w16inp() local
538 i4_tmp = 0; in ihevc_inter_pred_luma_vert_w16inp()
540 i4_tmp += pi1_coeff[i] * pi2_src[col + (i - 3) * src_strd]; in ihevc_inter_pred_luma_vert_w16inp()
542i4_tmp = ((i4_tmp >> SHIFT_14_MINUS_BIT_DEPTH) + OFFSET_14_MINUS_BIT_DEPTH) >> SHIFT_14_MINUS_BIT_… in ihevc_inter_pred_luma_vert_w16inp()
543 i4_tmp = CLIP_U8(i4_tmp); in ihevc_inter_pred_luma_vert_w16inp()
545 pu1_dst[col] = i4_tmp; in ihevc_inter_pred_luma_vert_w16inp()
607 WORD32 i4_tmp; in ihevc_inter_pred_luma_vert_w16inp_w16out() local
613 i4_tmp = 0; in ihevc_inter_pred_luma_vert_w16inp_w16out()
615 i4_tmp += pi1_coeff[i] * pi2_src[col + (i - 3) * src_strd]; in ihevc_inter_pred_luma_vert_w16inp_w16out()
617 i4_tmp = (i4_tmp >> SHIFT_14_MINUS_BIT_DEPTH) - OFFSET14; in ihevc_inter_pred_luma_vert_w16inp_w16out()
[all …]