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

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioBufferSourceNode.h 78 double loopEnd() const { return m_loopEnd; }
80 void setLoopEnd(double loopEnd) { m_loopEnd = loopEnd; }
120 double m_loopEnd;
AudioBufferSourceNode.cpp 61 , m_loopEnd(0)
222 // If the .loop attribute is true, then values of m_loopStart == 0 && m_loopEnd == 0 implies
223 // that we should use the entire buffer as the loop, otherwise use the loop values in m_loopStart and m_loopEnd.
227 if (loop() && (m_loopStart || m_loopEnd) && m_loopStart >= 0 && m_loopEnd > 0 && m_loopStart < m_loopEnd) {
230 double loopEndFrame = m_loopEnd * buffer()->sampleRate();

Completed in 78 milliseconds