Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_resize.c236 int x, x1, x2, sum, k, int_pel, sub_pel; in interpolate() local
260 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
265 const int pk = int_pel - INTERP_TAPS / 2 + 1 + k; in interpolate()
275 int_pel = y >> INTERP_PRECISION_BITS; 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()
288 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
293 sum += filter[k] * input[int_pel - INTERP_TAPS / 2 + 1 + k]; in interpolate()
299 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
304 sum += filter[k] * input[(int_pel - INTERP_TAPS / 2 + 1 + k >= in interpolate()
[all …]