Searched refs:m_virtualReadIndex (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/audio/
H A DAudioResamplerKernel.h64 double m_virtualReadIndex; member in class:WebCore::AudioResamplerKernel
H A DAudioResamplerKernel.cpp44 , m_virtualReadIndex(0.0)
55 // Calculate the next "virtual" index. After process() is called, m_virtualReadIndex will equal this value.
56 double nextFractionalIndex = m_virtualReadIndex + framesToProcess * rate();
93 double virtualReadIndex = m_virtualReadIndex;
125 m_virtualReadIndex = virtualReadIndex;
130 m_virtualReadIndex = 0.0;
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DAudioBufferSourceNode.cpp64 , m_virtualReadIndex(0)
220 if (m_virtualReadIndex >= endFrame)
221 m_virtualReadIndex = 0; // reset to start
245 double virtualReadIndex = m_virtualReadIndex;
327 m_virtualReadIndex = virtualReadIndex;
335 m_virtualReadIndex = 0;
365 m_virtualReadIndex = 0;
418 m_virtualReadIndex = AudioUtilities::timeToSampleFrame(m_grainOffset, buffer()->sampleRate());
H A DOscillatorNode.cpp60 , m_virtualReadIndex(0)
267 double virtualReadIndex = m_virtualReadIndex;
330 m_virtualReadIndex = virtualReadIndex;
337 m_virtualReadIndex = 0;
H A DOscillatorNode.h95 // m_virtualReadIndex is a sample-frame index into our buffer representing the current playback position.
97 double m_virtualReadIndex; member in class:WebCore::OscillatorNode
H A DAudioBufferSourceNode.h131 // m_virtualReadIndex is a sample-frame index into our buffer representing the current playback position.
133 double m_virtualReadIndex; member in class:WebCore::AudioBufferSourceNode

Completed in 199 milliseconds