OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:framesNeeded
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioResampler.cpp
90
size_t
framesNeeded
;
91
float* fillPointer = m_kernels[i]->getSourcePointer(framesToProcess, &
framesNeeded
);
96
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 24 milliseconds