Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_resize.c164 int x, x1, x2, sum, k, int_pel, sub_pel; in interpolate() local
188 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
193 const int pk = int_pel - INTERP_TAPS / 2 + 1 + k; in interpolate()
203 int_pel = y >> INTERP_PRECISION_BITS; 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()
216 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
221 sum += filter[k] * input[int_pel - INTERP_TAPS / 2 + 1 + k]; in interpolate()
227 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
232 sum += filter[k] * input[(int_pel - INTERP_TAPS / 2 + 1 + k >= inlength in interpolate()
[all …]
/external/libaom/libaom/av1/common/
Dresize.c250 int x, x1, x2, sum, k, int_pel, sub_pel; in interpolate_core() local
271 int_pel = y >> RS_SCALE_SUBPEL_BITS; in interpolate_core()
276 const int pk = int_pel - interp_taps / 2 + 1 + k; in interpolate_core()
284 int_pel = y >> RS_SCALE_SUBPEL_BITS; in interpolate_core()
289 sum += filter[k] * input[AOMMAX(int_pel - interp_taps / 2 + 1 + k, 0)]; in interpolate_core()
294 int_pel = y >> RS_SCALE_SUBPEL_BITS; in interpolate_core()
299 sum += filter[k] * input[int_pel - interp_taps / 2 + 1 + k]; in interpolate_core()
304 int_pel = y >> RS_SCALE_SUBPEL_BITS; in interpolate_core()
310 input[AOMMIN(int_pel - interp_taps / 2 + 1 + k, in_length - 1)]; in interpolate_core()
334 int x, x1, x2, k, int_pel, sub_pel; in interpolate_core_double_prec() local
[all …]