OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_destinationNode
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/webaudio/
AudioContext.cpp
87
,
m_destinationNode
(0)
95
m_destinationNode
= DefaultAudioDestinationNode::create(this);
105
m_destinationNode
->startRendering();
114
,
m_destinationNode
(0)
127
m_destinationNode
= OfflineAudioDestinationNode::create(this, m_renderTarget.get());
160
if (
m_destinationNode
.get()) {
163
m_destinationNode
->initialize();
174
m_destinationNode
->uninitialize();
180
m_destinationNode
.clear();
250
RefPtr<AudioBufferSourceNode> node = AudioBufferSourceNode::create(this,
m_destinationNode
->sampleRate())
[
all
...]
AudioContext.h
87
AudioDestinationNode* destination() { return
m_destinationNode
.get(); }
88
double currentTime() { return
m_destinationNode
->currentTime(); }
89
double sampleRate() { return
m_destinationNode
->sampleRate(); }
232
RefPtr<AudioDestinationNode>
m_destinationNode
;
Completed in 275 milliseconds