Searched refs:inlength (Results 1 – 1 of 1) sorted by relevance
214 static const interp_kernel *choose_interp_filter(int inlength, int outlength) { in choose_interp_filter() argument216 if (outlength16 >= inlength * 16) in choose_interp_filter()218 else if (outlength16 >= inlength * 13) in choose_interp_filter()220 else if (outlength16 >= inlength * 11) in choose_interp_filter()222 else if (outlength16 >= inlength * 9) in choose_interp_filter()228 static void interpolate(const uint8_t *const input, int inlength, in interpolate() argument230 const int64_t delta = (((uint64_t)inlength << 32) + outlength / 2) / in interpolate()232 const int64_t offset = inlength > outlength ? in interpolate()233 (((int64_t)(inlength - outlength) << 31) + outlength / 2) / outlength : in interpolate()234 -(((int64_t)(outlength - inlength) << 31) + outlength / 2) / outlength; in interpolate()[all …]