Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_resize.c240 int x, x1, x2, sum, k, int_pel, sub_pel; in interpolate() local
264 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
269 const int pk = int_pel - INTERP_TAPS / 2 + 1 + k; in interpolate()
279 int_pel = y >> INTERP_PRECISION_BITS; 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()
292 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
297 sum += filter[k] * input[int_pel - INTERP_TAPS / 2 + 1 + k]; in interpolate()
303 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
308 sum += filter[k] * input[(int_pel - INTERP_TAPS / 2 + 1 + k >= in interpolate()
[all …]