Home | History | Annotate | Download | only in libaudioprocessing

Lines Matching defs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
124 // copy in the input data into the head (impulse+halfNumCoefs) of the buffer.
128 const TI* const in, const size_t inputIndex)
132 head[i] = in[inputIndex*CHANNELS + i];
136 // advance the impulse pointer, and load in data into the head (impulse+halfNumCoefs)
140 const TI* const in, const size_t inputIndex)
149 readAgain<CHANNELS>(impulse, halfNumCoefs, in, inputIndex);
365 // determine the number of polyphases in the filterbank.
404 mPhaseFraction %= phaseWrapLimit; // should not do anything, but just in case.
513 // sanity check that inFrameCount is in signed 32 bit integer range.
541 // We are either at the end of playback or in an underrun situation.
547 if (phaseFraction >= phaseWrapLimit) { // read in data
567 const TI* const in = reinterpret_cast<const TI*>(mBuffer.raw);
578 // from the input samples in impulse[-halfNumCoefs+1]... impulse[halfNumCoefs]
579 // from the polyphase filter of (phaseFraction / phaseWrapLimit) in coefs.
598 mInBuffer.template readAdvance<CHANNELS>(impulse, halfNumCoefs, in, inputIndex);
616 // inputIndex must be zero in all three cases:
621 ALOG_ASSERT(mBuffer.frameCount == 0); // there must be no frames in the buffer