Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1448)

Unified Diff: Source/modules/webaudio/AudioContext.h

Issue 691143007: Implement StereoPannerNode for robust stereo panning (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/modules/webaudio/AudioContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioContext.h
diff --git a/Source/modules/webaudio/AudioContext.h b/Source/modules/webaudio/AudioContext.h
index c8cba0bb763485b26b93253f44673ffe850b6810..9e2e2c075920917e9eda33014febc9616b6d3ecd 100644
--- a/Source/modules/webaudio/AudioContext.h
+++ b/Source/modules/webaudio/AudioContext.h
@@ -68,6 +68,7 @@ class OscillatorNode;
class PannerNode;
class PeriodicWave;
class ScriptProcessorNode;
+class StereoPannerNode;
class WaveShaperNode;
// AudioContext is the cornerstone of the web audio API and all AudioNodes are created from it.
@@ -122,6 +123,7 @@ public:
ScriptProcessorNode* createScriptProcessor(size_t bufferSize, ExceptionState&);
ScriptProcessorNode* createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, ExceptionState&);
ScriptProcessorNode* createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, size_t numberOfOutputChannels, ExceptionState&);
+ StereoPannerNode* createStereoPanner();
ChannelSplitterNode* createChannelSplitter(ExceptionState&);
ChannelSplitterNode* createChannelSplitter(size_t numberOfOutputs, ExceptionState&);
ChannelMergerNode* createChannelMerger(ExceptionState&);
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/modules/webaudio/AudioContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698