Searched defs:Interp (Results 1 - 1 of 1) sorted by path

/frameworks/av/services/audioflinger/
H A DAudioResampler.cpp68 static inline int32_t Interp(int32_t x0, int32_t x1, uint32_t f) { function in class:android::AudioResamplerOrder1
375 out[outputIndex++] += vl * Interp(mX0L, in[0], phaseFraction);
376 out[outputIndex++] += vr * Interp(mX0R, in[1], phaseFraction);
399 out[outputIndex++] += vl * Interp(in[inputIndex*2-2],
401 out[outputIndex++] += vr * Interp(in[inputIndex*2-1],
470 int32_t sample = Interp(mX0L, in[0], phaseFraction);
495 int32_t sample = Interp(in[inputIndex-1], in[inputIndex],

Completed in 59 milliseconds