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.c27 #define INTERP_TAPS 8 macro
32 typedef int16_t interp_kernel[INTERP_TAPS];
248 while ((y >> INTERP_PRECISION_BITS) < (INTERP_TAPS / 2 - 1)) { in interpolate()
256 (int64_t)(INTERP_TAPS / 2) >= inlength) { in interpolate()
268 for (k = 0; k < INTERP_TAPS; ++k) { in interpolate()
269 const int pk = int_pel - INTERP_TAPS / 2 + 1 + k; in interpolate()
283 for (k = 0; k < INTERP_TAPS; ++k) in interpolate()
284 sum += filter[k] * input[(int_pel - INTERP_TAPS / 2 + 1 + k < 0 ? in interpolate()
286 int_pel - INTERP_TAPS / 2 + 1 + k)]; in interpolate()
296 for (k = 0; k < INTERP_TAPS; ++k) in interpolate()
[all …]