Title: [292295] trunk/Source/WebCore
Revision
292295
Author
[email protected]
Date
2022-04-04 10:21:16 -0700 (Mon, 04 Apr 2022)

Log Message

Unreviewed, GStreamer 1.21 build fix after r292215

* Modules/mediastream/gstreamer/GStreamerStatsCollector.cpp:
(WebCore::fillInboundRTPStreamStats): Fix typo in packetsLost variable name.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (292294 => 292295)


--- trunk/Source/WebCore/ChangeLog	2022-04-04 17:20:49 UTC (rev 292294)
+++ trunk/Source/WebCore/ChangeLog	2022-04-04 17:21:16 UTC (rev 292295)
@@ -1,3 +1,10 @@
+2022-04-04  Philippe Normand  <[email protected]>
+
+        Unreviewed, GStreamer 1.21 build fix after r292215
+
+        * Modules/mediastream/gstreamer/GStreamerStatsCollector.cpp:
+        (WebCore::fillInboundRTPStreamStats): Fix typo in packetsLost variable name.
+
 2022-04-04  Said Abou-Hallawa  <[email protected]>
 
         [GPU Process] [iOS] Sometimes the text drop shadow is not drawn

Modified: trunk/Source/WebCore/Modules/mediastream/gstreamer/GStreamerStatsCollector.cpp (292294 => 292295)


--- trunk/Source/WebCore/Modules/mediastream/gstreamer/GStreamerStatsCollector.cpp	2022-04-04 17:20:49 UTC (rev 292294)
+++ trunk/Source/WebCore/Modules/mediastream/gstreamer/GStreamerStatsCollector.cpp	2022-04-04 17:21:16 UTC (rev 292295)
@@ -94,7 +94,7 @@
 #if GST_CHECK_VERSION(1, 21, 0)
     int64_t packetsLost;
     if (gst_structure_get_int64(structure, "packets-lost", &packetsLost))
-        stats.packetsLost = packetsLosts;
+        stats.packetsLost = packetsLost;
 #else
     unsigned packetsLost;
     if (gst_structure_get_uint(structure, "packets-lost", &packetsLost))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to