HomeSort by relevance Sort by last modified time
    Searched refs:m_isGrain (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/webaudio/
AudioBufferSourceNode.cpp 56 , m_isGrain(false)
168 // If m_isGrain is true, then we will be playing a portion of the total buffer.
169 unsigned startFrame = m_isGrain ? static_cast<unsigned>(m_grainOffset * bufferSampleRate) : 0;
170 unsigned endFrame = m_isGrain ? static_cast<unsigned>(startFrame + m_grainDuration * bufferSampleRate) : bufferLength;
174 if (m_isGrain)
299 if (m_isGrain)
377 m_isGrain = false;
408 m_isGrain = true;
AudioBufferSourceNode.h 116 bool m_isGrain;
138 // A grain envelope will be applied if m_isGrain is set to true.

Completed in 1266 milliseconds