Home
last modified time | relevance | path

Searched refs:ih264_g_six_tap (Results 1 – 3 of 3) sorted by relevance

/external/libavc/encoder/
Dih264e_half_pel.c120 i16_temp = ih264_g_six_tap[0] * (*pu1_src + pu1_src[5]) in ih264e_sixtapfilter_horz()
121 + ih264_g_six_tap[1] * (pu1_src[1] + pu1_src[4]) in ih264e_sixtapfilter_horz()
122 + ih264_g_six_tap[2] * (pu1_src[2] + pu1_src[3]); in ih264e_sixtapfilter_horz()
196 tmp = ih264_g_six_tap[0] * (pu1_src[col - 2 * src_strd] + pu1_src[col + 3 * src_strd]) + in ih264e_sixtap_filter_2dvh_vert()
197ih264_g_six_tap[1] * (pu1_src[col - 1 * src_strd] + pu1_src[col + 2 * src_strd]) + in ih264e_sixtap_filter_2dvh_vert()
198 ih264_g_six_tap[2] * (pu1_src[col] + pu1_src[col + 1 * src_strd]); in ih264e_sixtap_filter_2dvh_vert()
212 ih264_g_six_tap[1] * (pi4_pred[col - 1] + pi4_pred[col + 2]) + in ih264e_sixtap_filter_2dvh_vert()
213 ih264_g_six_tap[2] * (pi4_pred[col] + pi4_pred[col + 1]); in ih264e_sixtap_filter_2dvh_vert()
/external/libavc/common/
Dih264_inter_pred_filters.c67 const WORD32 ih264_g_six_tap[3] ={1,-5,20}; variable
246 i2_tmp = ih264_g_six_tap[0] * in ih264_inter_pred_luma_horz()
248 + ih264_g_six_tap[1] * in ih264_inter_pred_luma_horz()
250 + ih264_g_six_tap[2] * in ih264_inter_pred_luma_horz()
316 i2_tmp = ih264_g_six_tap[0] * in ih264_inter_pred_luma_vert()
318 + ih264_g_six_tap[1] * in ih264_inter_pred_luma_vert()
320 + ih264_g_six_tap[2] * in ih264_inter_pred_luma_vert()
388 tmp = ih264_g_six_tap[0] * in ih264_inter_pred_luma_horz_hpel_vert_hpel()
390 + ih264_g_six_tap[1] * in ih264_inter_pred_luma_horz_hpel_vert_hpel()
392 + ih264_g_six_tap[2] * in ih264_inter_pred_luma_horz_hpel_vert_hpel()
[all …]
Dih264_inter_pred_filters.h97 extern const WORD32 ih264_g_six_tap[3];/* coefficients for 6 tap filtering*/