Searched refs:m_virtualSourceIndex (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/audio/
H A DSincResampler.h63 // m_virtualSourceIndex is an index on the source input buffer with sub-sample precision.
65 double m_virtualSourceIndex; member in class:WebCore::SincResampler
H A DSincResampler.cpp64 // note: we're glossing over how the sub-sample handling works with m_virtualSourceIndex, etc.
73 , m_virtualSourceIndex(0.0)
165 m_virtualSourceIndex = 0;
168 while (m_virtualSourceIndex < m_blockSize) {
169 // m_virtualSourceIndex lies in between two kernel offsets so figure out what they are.
170 int sourceIndexI = static_cast<int>(m_virtualSourceIndex);
171 double subsampleRemainder = m_virtualSourceIndex - sourceIndexI;
179 // Initialize input pointer based on quantized m_virtualSourceIndex.
182 // We'll compute "convolutions" for the two kernels which straddle m_virtualSourceIndex
323 m_virtualSourceIndex
[all...]

Completed in 349 milliseconds