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.h120 inline void setImpulse(TI *impulse) { argument
121 mImpulse = impulse;
125 inline void readAgain(TI*& impulse, const int halfNumCoefs,
129 inline void readAdvance(TI*& impulse, const int halfNumCoefs,
140 TI* mImpulse; // current location of the impulse response (centered)
H A DAudioResamplerDyn.cpp130 // copy in the input data into the head (impulse+halfNumCoefs) of the buffer.
133 void AudioResamplerDyn<TC, TI, TO>::InBuffer::readAgain(TI*& impulse, const int halfNumCoefs, argument
136 TI* head = impulse + halfNumCoefs*CHANNELS;
142 // advance the impulse pointer, and load in data into the head (impulse+halfNumCoefs)
145 void AudioResamplerDyn<TC, TI, TO>::InBuffer::readAdvance(TI*& impulse, const int halfNumCoefs, argument
148 impulse += CHANNELS;
150 if (CC_UNLIKELY(impulse >= mRingFull)) {
153 impulse -= shiftDown;
155 readAgain<CHANNELS>(impulse, halfNumCoef
576 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 462 milliseconds