Title: [293330] trunk/Source/WebCore
Revision
293330
Author
[email protected]
Date
2022-04-25 09:41:17 -0700 (Mon, 25 Apr 2022)

Log Message

[GStreamer] Remove unused rtc variable
https://bugs.webkit.org/show_bug.cgi?id=239727

Reviewed by Philippe Normand.

* Modules/mediastream/gstreamer/GStreamerMediaEndpoint.cpp:
(WebCore::GStreamerMediaEndpoint::addTrack):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (293329 => 293330)


--- trunk/Source/WebCore/ChangeLog	2022-04-25 16:10:59 UTC (rev 293329)
+++ trunk/Source/WebCore/ChangeLog	2022-04-25 16:41:17 UTC (rev 293330)
@@ -1,3 +1,13 @@
+2022-04-25  Claudio Saavedra  <[email protected]>
+
+        [GStreamer] Remove unused rtc variable
+        https://bugs.webkit.org/show_bug.cgi?id=239727
+
+        Reviewed by Philippe Normand.
+
+        * Modules/mediastream/gstreamer/GStreamerMediaEndpoint.cpp:
+        (WebCore::GStreamerMediaEndpoint::addTrack):
+
 2022-04-25  Ziran Sun  <[email protected]>
 
         UA stylesheet should include table { text-indent: initial } to conform with HTML standard

Modified: trunk/Source/WebCore/Modules/mediastream/gstreamer/GStreamerMediaEndpoint.cpp (293329 => 293330)


--- trunk/Source/WebCore/Modules/mediastream/gstreamer/GStreamerMediaEndpoint.cpp	2022-04-25 16:10:59 UTC (rev 293329)
+++ trunk/Source/WebCore/Modules/mediastream/gstreamer/GStreamerMediaEndpoint.cpp	2022-04-25 16:41:17 UTC (rev 293330)
@@ -606,7 +606,7 @@
 
     sender.setSource(WTFMove(source));
 
-    if (auto rtpSender = sender.rtcSender()) {
+    if (sender.rtcSender()) {
         GST_DEBUG_OBJECT(m_pipeline.get(), "Already has a sender.");
         return true;
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to