Searched defs:impulse (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dservice_endpoint.h31 uint64_t impulse[4] = {}; member in struct:android::pdx::MessageInfo
/frameworks/av/media/libaudioprocessing/
H A DAudioResamplerDyn.h87 inline void setImpulse(TI *impulse) { argument
88 mImpulse = impulse;
92 inline void readAgain(TI*& impulse, const int halfNumCoefs,
96 inline void readAdvance(TI*& impulse, const int halfNumCoefs,
107 TI* mImpulse; // current location of the impulse response (centered)
H A DAudioResamplerDyn.cpp124 // copy in the input data into the head (impulse+halfNumCoefs) of the buffer.
127 void AudioResamplerDyn<TC, TI, TO>::InBuffer::readAgain(TI*& impulse, const int halfNumCoefs, argument
130 TI* head = impulse + halfNumCoefs*CHANNELS;
136 // advance the impulse pointer, and load in data into the head (impulse+halfNumCoefs)
139 void AudioResamplerDyn<TC, TI, TO>::InBuffer::readAdvance(TI*& impulse, const int halfNumCoefs, argument
142 impulse += CHANNELS;
144 if (CC_UNLIKELY(impulse >= mRingFull)) {
147 impulse -= shiftDown;
149 readAgain<CHANNELS>(impulse, halfNumCoef
504 TI* impulse = mInBuffer.getImpulse(); local
[all...]
H A DAudioResamplerSinc.cpp299 int16_t* impulse = mImpulse; local
319 read<CHANNELS>(impulse, phaseFraction, mBuffer.i16, inputIndex);
322 read<CHANNELS>(impulse, phaseFraction, mBuffer.i16, inputIndex);
328 read<CHANNELS>(impulse, phaseFraction, mBuffer.i16, inputIndex);
336 int16_t* head = impulse + headOffset;
343 filterCoefficient<CHANNELS>(&out[outputIndex], phaseFraction, impulse, vRL);
353 read<CHANNELS>(impulse, phaseFraction, in, inputIndex);
365 mImpulse = impulse;
380 int16_t*& impulse, uint32_t& phaseFraction,
383 impulse
379 read( int16_t*& impulse, uint32_t& phaseFraction, const int16_t* in, size_t inputIndex) argument
[all...]

Completed in 631 milliseconds