HomeSort by relevance Sort by last modified time
    Searched refs:ih264_g_six_tap (Results 1 - 3 of 3) sorted by null

  /external/libavc/encoder/
ih264e_half_pel.c 120 i16_temp = ih264_g_six_tap[0] * (*pu1_src + pu1_src[5])
121 + ih264_g_six_tap[1] * (pu1_src[1] + pu1_src[4])
122 + ih264_g_six_tap[2] * (pu1_src[2] + pu1_src[3]);
196 tmp = ih264_g_six_tap[0] * (pu1_src[col - 2 * src_strd] + pu1_src[col + 3 * src_strd]) +
197 ih264_g_six_tap[1] * (pu1_src[col - 1 * src_strd] + pu1_src[col + 2 * src_strd]) +
198 ih264_g_six_tap[2] * (pu1_src[col] + pu1_src[col + 1 * src_strd]);
212 ih264_g_six_tap[1] * (pi4_pred[col - 1] + pi4_pred[col + 2]) +
213 ih264_g_six_tap[2] * (pi4_pred[col] + pi4_pred[col + 1]);
  /external/libavc/common/
ih264_inter_pred_filters.c 67 const WORD32 ih264_g_six_tap[3] ={1,-5,20}; variable
245 i2_tmp = 0;/*ih264_g_six_tap[] is the array containing the filter coeffs*/
246 i2_tmp = ih264_g_six_tap[0] *
248 + ih264_g_six_tap[1] *
250 + ih264_g_six_tap[2] *
315 i2_tmp = 0; /*ih264_g_six_tap[] is the array containing the filter coeffs*/
316 i2_tmp = ih264_g_six_tap[0] *
318 + ih264_g_six_tap[1] *
320 + ih264_g_six_tap[2] *
387 tmp = 0;/*ih264_g_six_tap[] is the array containing the filter coeffs*
    [all...]
ih264_inter_pred_filters.h 97 extern const WORD32 ih264_g_six_tap[3];/* coefficients for 6 tap filtering*/

Completed in 205 milliseconds