Title: [209705] trunk/Source/WebCore
Revision
209705
Author
[email protected]
Date
2016-12-12 01:10:07 -0800 (Mon, 12 Dec 2016)

Log Message

Unreviewed. Fixing build breakage in GStreamer's WebKitCommonEncryptionDecryptorGStreamer.

* platform/graphics/gstreamer/eme/WebKitCommonEncryptionDecryptorGStreamer.cpp:
(webkitMediaCommonEncryptionDecryptTransformInPlace):
WTF::Seconds should be used instead of std::chrono::seconds.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (209704 => 209705)


--- trunk/Source/WebCore/ChangeLog	2016-12-12 08:32:01 UTC (rev 209704)
+++ trunk/Source/WebCore/ChangeLog	2016-12-12 09:10:07 UTC (rev 209705)
@@ -1,3 +1,11 @@
+2016-12-12  Zan Dobersek  <[email protected]>
+
+        Unreviewed. Fixing build breakage in GStreamer's WebKitCommonEncryptionDecryptorGStreamer.
+
+        * platform/graphics/gstreamer/eme/WebKitCommonEncryptionDecryptorGStreamer.cpp:
+        (webkitMediaCommonEncryptionDecryptTransformInPlace):
+        WTF::Seconds should be used instead of std::chrono::seconds.
+
 2016-12-11  Simon Fraser  <[email protected]>
 
         REGRESSION (r200283): Transform, overflow hidden and filter combination completely hides the element

Modified: trunk/Source/WebCore/platform/graphics/gstreamer/eme/WebKitCommonEncryptionDecryptorGStreamer.cpp (209704 => 209705)


--- trunk/Source/WebCore/platform/graphics/gstreamer/eme/WebKitCommonEncryptionDecryptorGStreamer.cpp	2016-12-12 08:32:01 UTC (rev 209704)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/eme/WebKitCommonEncryptionDecryptorGStreamer.cpp	2016-12-12 09:10:07 UTC (rev 209705)
@@ -197,7 +197,7 @@
             GST_ERROR_OBJECT(self, "can't process key requests in less than PAUSED state");
             return GST_FLOW_NOT_SUPPORTED;
         }
-        priv->condition.waitFor(priv->mutex, std::chrono::seconds(5), [priv] {
+        priv->condition.waitFor(priv->mutex, Seconds(5), [priv] {
             return priv->keyReceived;
         });
         if (!priv->keyReceived) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to