Home
last modified time | relevance | path

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

/external/libhevc/common/
Dihevc_inter_pred_filters.c179 WORD16 i2_tmp; in ihevc_inter_pred_luma_horz() local
185 i2_tmp = 0; in ihevc_inter_pred_luma_horz()
187 i2_tmp += pi1_coeff[i] * pu1_src[col + (i - 3)]; in ihevc_inter_pred_luma_horz()
189 i2_tmp = (i2_tmp + OFFSET_14_MINUS_BIT_DEPTH) >> SHIFT_14_MINUS_BIT_DEPTH; in ihevc_inter_pred_luma_horz()
190 i2_tmp = CLIP_U8(i2_tmp); in ihevc_inter_pred_luma_horz()
192 pu1_dst[col] = (UWORD8)i2_tmp; in ihevc_inter_pred_luma_horz()
252 WORD16 i2_tmp; in ihevc_inter_pred_luma_vert() local
258 i2_tmp = 0; in ihevc_inter_pred_luma_vert()
260 i2_tmp += pi1_coeff[i] * pu1_src[col + (i - 3) * src_strd]; in ihevc_inter_pred_luma_vert()
262 i2_tmp = (i2_tmp + OFFSET_14_MINUS_BIT_DEPTH) >> SHIFT_14_MINUS_BIT_DEPTH; in ihevc_inter_pred_luma_vert()
[all …]
/external/libavc/common/
Dih264_inter_pred_filters.c237 WORD16 i2_tmp; in ih264_inter_pred_luma_horz() local
245 i2_tmp = 0;/*ih264_g_six_tap[] is the array containing the filter coeffs*/ in ih264_inter_pred_luma_horz()
246 i2_tmp = ih264_g_six_tap[0] * in ih264_inter_pred_luma_horz()
252 i2_tmp = (i2_tmp + 16) >> 5; in ih264_inter_pred_luma_horz()
253 pu1_dst[col] = CLIP_U8(i2_tmp); in ih264_inter_pred_luma_horz()
307 WORD16 i2_tmp; in ih264_inter_pred_luma_vert() local
315 i2_tmp = 0; /*ih264_g_six_tap[] is the array containing the filter coeffs*/ in ih264_inter_pred_luma_vert()
316 i2_tmp = ih264_g_six_tap[0] * in ih264_inter_pred_luma_vert()
322 i2_tmp = (i2_tmp + 16) >> 5; in ih264_inter_pred_luma_vert()
323 pu1_dst[col] = CLIP_U8(i2_tmp); in ih264_inter_pred_luma_vert()
[all …]