Title: [229803] trunk/Source/WebCore
Revision
229803
Author
[email protected]
Date
2018-03-21 05:37:03 -0700 (Wed, 21 Mar 2018)

Log Message

[WPE] Build failure with ENABLE_VIDEO=OFF when GStreamer is not available
https://bugs.webkit.org/show_bug.cgi?id=183811

Reviewed by Philippe Normand.

Add build guards for USE_GSTREAMER.

No new tests, it is a build fix.

* platform/graphics/gstreamer/GStreamerUtilities.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (229802 => 229803)


--- trunk/Source/WebCore/ChangeLog	2018-03-21 10:32:25 UTC (rev 229802)
+++ trunk/Source/WebCore/ChangeLog	2018-03-21 12:37:03 UTC (rev 229803)
@@ -1,3 +1,16 @@
+2018-03-21  Carlos Alberto Lopez Perez  <[email protected]>
+
+        [WPE] Build failure with ENABLE_VIDEO=OFF when GStreamer is not available
+        https://bugs.webkit.org/show_bug.cgi?id=183811
+
+        Reviewed by Philippe Normand.
+
+        Add build guards for USE_GSTREAMER.
+
+        No new tests, it is a build fix.
+
+        * platform/graphics/gstreamer/GStreamerUtilities.h:
+
 2018-03-21  Zan Dobersek  <[email protected]>
 
         [Cairo] Draw Cairo patterns with cairo_paint_with_alpha()

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.h (229802 => 229803)


--- trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.h	2018-03-21 10:32:25 UTC (rev 229802)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.h	2018-03-21 12:37:03 UTC (rev 229803)
@@ -20,6 +20,7 @@
 #pragma once
 
 
+#if USE(GSTREAMER)
 #include "FloatSize.h"
 #include <gst/gst.h>
 #include <gst/video/video-format.h>
@@ -85,3 +86,4 @@
 #ifndef GST_BUFFER_DTS_OR_PTS
 #define GST_BUFFER_DTS_OR_PTS(buffer) (GST_BUFFER_DTS_IS_VALID(buffer) ? GST_BUFFER_DTS(buffer) : GST_BUFFER_PTS(buffer))
 #endif
+#endif // USE(GSTREAMER)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to