Title: [260178] trunk/Source/WebCore
Revision
260178
Author
[email protected]
Date
2020-04-16 04:43:24 -0700 (Thu, 16 Apr 2020)

Log Message

Unreviewed, fix GStreamer build warnings.

* platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
(WebCore::MediaPlayerPrivateGStreamer::cdmInstanceDetached):
* platform/graphics/gstreamer/mse/AppendPipeline.cpp:
(WebCore::AppendPipeline::handleErrorConditionFromStreamingThread):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (260177 => 260178)


--- trunk/Source/WebCore/ChangeLog	2020-04-16 11:39:44 UTC (rev 260177)
+++ trunk/Source/WebCore/ChangeLog	2020-04-16 11:43:24 UTC (rev 260178)
@@ -1,3 +1,12 @@
+2020-04-16  Philippe Normand  <[email protected]>
+
+        Unreviewed, fix GStreamer build warnings.
+
+        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
+        (WebCore::MediaPlayerPrivateGStreamer::cdmInstanceDetached):
+        * platform/graphics/gstreamer/mse/AppendPipeline.cpp:
+        (WebCore::AppendPipeline::handleErrorConditionFromStreamingThread):
+
 2020-04-16  Carlos Alberto Lopez Perez  <[email protected]>
 
         [GTK] MiniBrowser opens new windows too small causing failures on some WPT tests

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp (260177 => 260178)


--- trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp	2020-04-16 11:39:44 UTC (rev 260177)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp	2020-04-16 11:43:24 UTC (rev 260178)
@@ -3779,6 +3779,7 @@
 
 void MediaPlayerPrivateGStreamer::cdmInstanceDetached(CDMInstance& instance)
 {
+    UNUSED_PARAM(instance);
     ASSERT(isMainThread());
     ASSERT(m_pipeline);
 

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.cpp (260177 => 260178)


--- trunk/Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.cpp	2020-04-16 11:39:44 UTC (rev 260177)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/mse/AppendPipeline.cpp	2020-04-16 11:43:24 UTC (rev 260178)
@@ -289,6 +289,9 @@
         m_sourceBufferPrivate->appendParsingFailed();
         return AbortableTaskQueue::Void();
     });
+#ifdef NDEBUG
+    UNUSED_VARIABLE(response);
+#endif
     // The streaming thread has now been unblocked because we are aborting in the main thread.
     ASSERT(!response);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to