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

  /external/webkit/Source/WebCore/platform/audio/
AudioResamplerKernel.cpp 45 , m_fillIndex(0)
62 // We need to fill the buffer up to and including endIndex (so add 1) but we've already buffered m_fillIndex frames from last time.
63 size_t framesNeeded = 1 + endIndex - m_fillIndex;
68 bool isGood = m_fillIndex < m_sourceBuffer.size() && m_fillIndex + framesNeeded <= m_sourceBuffer.size();
73 return m_sourceBuffer.data() + m_fillIndex;
87 if (m_fillIndex > 0) {
119 m_fillIndex = 2;
131 m_fillIndex = 0;
AudioResamplerKernel.h 68 // m_fillIndex represents how many buffered samples we have which can be as many as 2.
71 unsigned m_fillIndex;

Completed in 42 milliseconds