OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_fillindex
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/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
69
//
m_fillIndex
represents how many buffered samples we have which can be as many as 2.
72
unsigned
m_fillIndex
;
Completed in 27 milliseconds