Home
last modified time | relevance | path

Searched refs:mNumRows (Results 1 – 3 of 3) sorted by relevance

/external/oboe/src/flowgraph/resampler/
DSincResampler.cpp27 mNumRows = kMaxCoefficients / getNumTaps(); // no guard row needed in SincResampler()
29 mPhaseScaler = (double) mNumRows / mDenominator; in SincResampler()
30 double phaseIncrement = 1.0 / mNumRows; in SincResampler()
33 mNumRows, in SincResampler()
46 if (index1 >= mNumRows) { // no guard row needed because we wrap the indices in readFrame()
47 tablePhase -= mNumRows; in readFrame()
48 index1 -= mNumRows; in readFrame()
52 if (index2 >= mNumRows) { // no guard row needed because we wrap the indices in readFrame()
53 index2 -= mNumRows; in readFrame()
DSincResampler.h42 int32_t mNumRows = 0; variable
DSincResamplerStereo.cpp59 if (index2 >= mNumRows) { // no guard row needed because we wrap the indices in readFrame()