OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ChannelSplitterNode
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
ChannelSplitterNode.h
35
class
ChannelSplitterNode
: public AudioNode {
37
static PassRefPtr<
ChannelSplitterNode
> create(AudioContext*, float sampleRate, unsigned numberOfOutputs);
47
ChannelSplitterNode
(AudioContext*, float sampleRate, unsigned numberOfOutputs);
ChannelSplitterNode.cpp
29
#include "modules/webaudio/
ChannelSplitterNode
.h"
37
PassRefPtr<
ChannelSplitterNode
>
ChannelSplitterNode
::create(AudioContext* context, float sampleRate, unsigned numberOfOutputs)
42
return adoptRef(new
ChannelSplitterNode
(context, sampleRate, numberOfOutputs));
45
ChannelSplitterNode
::
ChannelSplitterNode
(AudioContext* context, float sampleRate, unsigned numberOfOutputs)
59
void
ChannelSplitterNode
::process(size_t framesToProcess)
82
void
ChannelSplitterNode
::reset()
Completed in 131 milliseconds