Title: [268732] trunk/Source/WebCore
Revision
268732
Author
ph...@webkit.org
Date
2020-10-20 08:48:13 -0700 (Tue, 20 Oct 2020)

Log Message

Unreviewed, temporary workaround for bug #217959

* platform/audio/gstreamer/AudioDestinationGStreamer.cpp:
(WebCore::maximumNumberOfOutputChannels): Return a hard-coded value until the device monitor issue is fixed.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (268731 => 268732)


--- trunk/Source/WebCore/ChangeLog	2020-10-20 15:42:20 UTC (rev 268731)
+++ trunk/Source/WebCore/ChangeLog	2020-10-20 15:48:13 UTC (rev 268732)
@@ -1,3 +1,10 @@
+2020-10-20  Philippe Normand  <pnorm...@igalia.com>
+
+        Unreviewed, temporary workaround for bug #217959
+
+        * platform/audio/gstreamer/AudioDestinationGStreamer.cpp:
+        (WebCore::maximumNumberOfOutputChannels): Return a hard-coded value until the device monitor issue is fixed.
+
 2020-10-20  Devin Rousso  <drou...@apple.com>
 
         Web Inspector: REGRESSION(r260076): crash under InspectorInstrumentation::willApplyKeyframeEffect

Modified: trunk/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.cpp (268731 => 268732)


--- trunk/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.cpp	2020-10-20 15:42:20 UTC (rev 268731)
+++ trunk/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.cpp	2020-10-20 15:48:13 UTC (rev 268732)
@@ -52,6 +52,9 @@
 {
     initializeDebugCategory();
 
+    // FIXME: https://bugs.webkit.org/show_bug.cgi?id=217959
+    return 2;
+
     static int count = 0;
     static std::once_flag onceFlag;
     std::call_once(onceFlag, [] {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to