Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_resize.c23 #define INTERP_TAPS 8 macro
28 typedef int16_t interp_kernel[INTERP_TAPS];
244 while ((y >> INTERP_PRECISION_BITS) < (INTERP_TAPS / 2 - 1)) { in interpolate()
252 (int64_t)(INTERP_TAPS / 2) >= inlength) { in interpolate()
264 for (k = 0; k < INTERP_TAPS; ++k) { in interpolate()
265 const int pk = int_pel - INTERP_TAPS / 2 + 1 + k; in interpolate()
279 for (k = 0; k < INTERP_TAPS; ++k) in interpolate()
280 sum += filter[k] * input[(int_pel - INTERP_TAPS / 2 + 1 + k < 0 ? in interpolate()
282 int_pel - INTERP_TAPS / 2 + 1 + k)]; in interpolate()
292 for (k = 0; k < INTERP_TAPS; ++k) in interpolate()
[all …]