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

  /external/webkit/Source/WebCore/platform/audio/
AudioResampler.cpp 91 size_t framesNeeded;
92 float* fillPointer = m_kernels[i]->getSourcePointer(framesToProcess, &framesNeeded);
97 m_sourceBus->setChannelMemory(i, fillPointer, framesNeeded);
AudioResamplerKernel.cpp 63 size_t framesNeeded = 1 + endIndex - m_fillIndex;
65 *numberOfSourceFramesNeededP = framesNeeded;
68 bool isGood = m_fillIndex < m_sourceBuffer.size() && m_fillIndex + framesNeeded <= m_sourceBuffer.size();

Completed in 61 milliseconds