OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_inPlaceBus
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNodeOutput.h
128
// m_internalBus and
m_inPlaceBus
must only be changed in the audio thread with the context's graph lock (or constructor).
130
RefPtr<AudioBus>
m_inPlaceBus
;
131
// If m_isInPlace is true, use
m_inPlaceBus
as the valid AudioBus; If false, use the default m_internalBus.
AudioNodeOutput.cpp
120
m_inPlaceBus
= m_isInPlace ? inPlaceBus : 0;
129
return m_isInPlace ?
m_inPlaceBus
.get() : m_internalBus.get();
Completed in 30 milliseconds