Title: [139695] trunk/Source/WebCore
Revision
139695
Author
[email protected]
Date
2013-01-14 17:31:34 -0800 (Mon, 14 Jan 2013)

Log Message

Rolling out r139678. This triggered a number of WebAudio crashes on Debug bots.

* platform/audio/chromium/AudioDestinationChromium.cpp:
(WebCore::AudioDestinationChromium::AudioDestinationChromium):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (139694 => 139695)


--- trunk/Source/WebCore/ChangeLog	2013-01-15 01:22:59 UTC (rev 139694)
+++ trunk/Source/WebCore/ChangeLog	2013-01-15 01:31:34 UTC (rev 139695)
@@ -1,3 +1,10 @@
+2013-01-14  Levi Weintraub  <[email protected]>
+
+        Rolling out r139678. This triggered a number of WebAudio crashes on Debug bots.
+
+        * platform/audio/chromium/AudioDestinationChromium.cpp:
+        (WebCore::AudioDestinationChromium::AudioDestinationChromium):
+
 2013-01-09  Levi Weintraub <[email protected]>
 
         Rolling out r139683. It broke a bunch of webkit_unit_tests.

Modified: trunk/Source/WebCore/platform/audio/chromium/AudioDestinationChromium.cpp (139694 => 139695)


--- trunk/Source/WebCore/platform/audio/chromium/AudioDestinationChromium.cpp	2013-01-15 01:22:59 UTC (rev 139694)
+++ trunk/Source/WebCore/platform/audio/chromium/AudioDestinationChromium.cpp	2013-01-15 01:31:34 UTC (rev 139695)
@@ -66,7 +66,8 @@
     if (m_callbackBufferSize + renderBufferSize > fifoSize)
         return;
 
-    m_audioDevice = adoptPtr(WebKit::Platform::current()->createAudioDevice(m_callbackBufferSize, numberOfInputChannels, numberOfOutputChannels, sampleRate, this));
+    // FIXME: switch to new API (with input channels) once chromium supports it.
+    m_audioDevice = adoptPtr(WebKit::Platform::current()->createAudioDevice(m_callbackBufferSize, numberOfOutputChannels, sampleRate, this));
     ASSERT(m_audioDevice);
 
     // Create a FIFO to handle the possibility of the callback size
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to