Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_resize.c28 #define INTERP_TAPS 8 macro
33 typedef int16_t interp_kernel[INTERP_TAPS];
172 while ((y >> INTERP_PRECISION_BITS) < (INTERP_TAPS / 2 - 1)) { in interpolate()
179 while ((y >> INTERP_PRECISION_BITS) + (int64_t)(INTERP_TAPS / 2) >= in interpolate()
192 for (k = 0; k < INTERP_TAPS; ++k) { in interpolate()
193 const int pk = int_pel - INTERP_TAPS / 2 + 1 + k; in interpolate()
207 for (k = 0; k < INTERP_TAPS; ++k) in interpolate()
208 sum += filter[k] * input[(int_pel - INTERP_TAPS / 2 + 1 + k < 0 in interpolate()
210 : int_pel - INTERP_TAPS / 2 + 1 + k)]; in interpolate()
220 for (k = 0; k < INTERP_TAPS; ++k) in interpolate()
[all …]