Index: Source/modules/webaudio/AudioContext.cpp |
diff --git a/Source/modules/webaudio/AudioContext.cpp b/Source/modules/webaudio/AudioContext.cpp |
index 1fa9d78d1487be98833b4ca9eed55da21e13c2ac..934a5d0e32b858687ecbbdca1b134b167e4a1ace 100644 |
--- a/Source/modules/webaudio/AudioContext.cpp |
+++ b/Source/modules/webaudio/AudioContext.cpp |
@@ -418,9 +418,8 @@ PassRefPtr<MediaStreamAudioSourceNode> AudioContext::createMediaStreamSource(Med |
PassRefPtr<MediaStreamAudioDestinationNode> AudioContext::createMediaStreamDestination() |
{ |
- // FIXME: Add support for an optional argument which specifies the number of channels. |
- // FIXME: The default should probably be stereo instead of mono. |
- return MediaStreamAudioDestinationNode::create(this, 1); |
+ // Set number of output channels to stereo by default. |
+ return MediaStreamAudioDestinationNode::create(this, 2); |
} |
PassRefPtr<ScriptProcessorNode> AudioContext::createScriptProcessor(ExceptionState& exceptionState) |