Title: [226402] trunk/Source/WebCore
Revision
226402
Author
[email protected]
Date
2018-01-04 01:41:10 -0800 (Thu, 04 Jan 2018)

Log Message

Unreviewed, GTK build fix attempt after r226357

* platform/graphics/gstreamer/GStreamerUtilities.h: The
GST_BUFFER_DTS_OR_PTS macro was added in GStreamer 1.8 but old
versions of Debian might not have this release yet.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (226401 => 226402)


--- trunk/Source/WebCore/ChangeLog	2018-01-04 08:49:12 UTC (rev 226401)
+++ trunk/Source/WebCore/ChangeLog	2018-01-04 09:41:10 UTC (rev 226402)
@@ -1,3 +1,11 @@
+2018-01-04  Philippe Normand  <[email protected]>
+
+        Unreviewed, GTK build fix attempt after r226357
+
+        * platform/graphics/gstreamer/GStreamerUtilities.h: The
+        GST_BUFFER_DTS_OR_PTS macro was added in GStreamer 1.8 but old
+        versions of Debian might not have this release yet.
+
 2018-01-04  Youenn Fablet  <[email protected]>
 
         Implement Cache API partitioning based on ClientOrigin

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


--- trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.h	2018-01-04 08:49:12 UTC (rev 226401)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/GStreamerUtilities.h	2018-01-04 09:41:10 UTC (rev 226402)
@@ -71,3 +71,7 @@
 
 bool gstRegistryHasElementForMediaType(GList* elementFactories, const char* capsString);
 }
+
+#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
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to