Title: [291553] releases/WebKitGTK/webkit-2.36/Source/WebCore
Revision
291553
Author
carlo...@webkit.org
Date
2022-03-21 01:45:03 -0700 (Mon, 21 Mar 2022)

Log Message

Merge r291544 - REGRESSION(r289154) [GSTREAMER] webrtc/vp8-then-h264.html is crashing after SDK update to fdo 21.08 and Gstreamer 1.20
https://bugs.webkit.org/show_bug.cgi?id=237872

Patch by Philippe Normand <pnorm...@igalia.com> on 2022-03-20
Reviewed by Adrian Perez de Castro.

* platform/mediastream/libwebrtc/gstreamer/GStreamerVideoDecoderFactory.cpp:
(WebCore::VP8Decoder::Create): Fix typo in decoder factory test.

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.36/Source/WebCore/ChangeLog (291552 => 291553)


--- releases/WebKitGTK/webkit-2.36/Source/WebCore/ChangeLog	2022-03-21 08:35:28 UTC (rev 291552)
+++ releases/WebKitGTK/webkit-2.36/Source/WebCore/ChangeLog	2022-03-21 08:45:03 UTC (rev 291553)
@@ -1,3 +1,13 @@
+2022-03-20  Philippe Normand  <pnorm...@igalia.com>
+
+        REGRESSION(r289154) [GSTREAMER] webrtc/vp8-then-h264.html is crashing after SDK update to fdo 21.08 and Gstreamer 1.20
+        https://bugs.webkit.org/show_bug.cgi?id=237872
+
+        Reviewed by Adrian Perez de Castro.
+
+        * platform/mediastream/libwebrtc/gstreamer/GStreamerVideoDecoderFactory.cpp:
+        (WebCore::VP8Decoder::Create): Fix typo in decoder factory test.
+
 2022-03-01  Cameron McCormack  <hey...@apple.com>
 
         Make input element UA shadow tree creation lazy

Modified: releases/WebKitGTK/webkit-2.36/Source/WebCore/platform/mediastream/libwebrtc/gstreamer/GStreamerVideoDecoderFactory.cpp (291552 => 291553)


--- releases/WebKitGTK/webkit-2.36/Source/WebCore/platform/mediastream/libwebrtc/gstreamer/GStreamerVideoDecoderFactory.cpp	2022-03-21 08:35:28 UTC (rev 291552)
+++ releases/WebKitGTK/webkit-2.36/Source/WebCore/platform/mediastream/libwebrtc/gstreamer/GStreamerVideoDecoderFactory.cpp	2022-03-21 08:45:03 UTC (rev 291553)
@@ -367,7 +367,7 @@
     static std::unique_ptr<webrtc::VideoDecoder> Create()
     {
         auto factory = GstDecoderFactory("video/x-vp8");
-        if (!factory) {
+        if (factory) {
             const auto* factoryName = GST_OBJECT_NAME(GST_OBJECT(factory.get()));
             if (!g_strcmp0(factoryName, "vp8dec") || !g_strcmp0(factoryName, "vp8alphadecodebin")) {
                 GST_INFO("Our best GStreamer VP8 decoder is vp8dec, better use the one from LibWebRTC");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to