Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_resize.c31 #define INTERP_PRECISION_BITS 32 macro
172 while ((y >> INTERP_PRECISION_BITS) < (INTERP_TAPS / 2 - 1)) { in interpolate()
179 while ((y >> INTERP_PRECISION_BITS) + (int64_t)(INTERP_TAPS / 2) >= in interpolate()
188 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
189 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK; in interpolate()
203 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
204 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK; in interpolate()
216 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
217 sub_pel = (y >> (INTERP_PRECISION_BITS - SUBPEL_BITS)) & SUBPEL_MASK; in interpolate()
227 int_pel = y >> INTERP_PRECISION_BITS; in interpolate()
[all …]