Title: [269034] trunk/Source/WebCore
Revision
269034
Author
[email protected]
Date
2020-10-27 06:01:12 -0700 (Tue, 27 Oct 2020)

Log Message

[GStreamer] Device monitor issue in AudioDestination
https://bugs.webkit.org/show_bug.cgi?id=217959

Patch by Philippe Normand <[email protected]> on 2020-10-27
Reviewed by Xabier Rodriguez-Calvar.

Remove workaround for false-positive GstDeviceMonitor critical warnings. The GStreamer patch
fixing this issue was backported to the Flatpak SDK in bug #218021.

* platform/audio/gstreamer/AudioDestinationGStreamer.cpp:
(WebCore::maximumNumberOfOutputChannels):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (269033 => 269034)


--- trunk/Source/WebCore/ChangeLog	2020-10-27 13:00:41 UTC (rev 269033)
+++ trunk/Source/WebCore/ChangeLog	2020-10-27 13:01:12 UTC (rev 269034)
@@ -1,3 +1,16 @@
+2020-10-27  Philippe Normand  <[email protected]>
+
+        [GStreamer] Device monitor issue in AudioDestination
+        https://bugs.webkit.org/show_bug.cgi?id=217959
+
+        Reviewed by Xabier Rodriguez-Calvar.
+
+        Remove workaround for false-positive GstDeviceMonitor critical warnings. The GStreamer patch
+        fixing this issue was backported to the Flatpak SDK in bug #218021.
+
+        * platform/audio/gstreamer/AudioDestinationGStreamer.cpp:
+        (WebCore::maximumNumberOfOutputChannels):
+
 2020-10-27  Xabier Rodriguez Calvar  <[email protected]>
 
         [EME][GStreamer] Decode base64 init data if needed

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


--- trunk/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.cpp	2020-10-27 13:00:41 UTC (rev 269033)
+++ trunk/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.cpp	2020-10-27 13:01:12 UTC (rev 269034)
@@ -52,9 +52,6 @@
 {
     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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to