Title: [237237] trunk/Source/WTF
Revision
237237
Author
commit-qu...@webkit.org
Date
2018-10-17 16:06:02 -0700 (Wed, 17 Oct 2018)

Log Message

Unreviewed, rolling out r237208.
https://bugs.webkit.org/show_bug.cgi?id=190691

Caused the API test that was changed to failure continuously
(Requested by Truitt on #webkit).

Reverted changeset:

"[Media] Use nanoseconds as MaximumTimeScale"
https://bugs.webkit.org/show_bug.cgi?id=190631
https://trac.webkit.org/changeset/237208

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (237236 => 237237)


--- trunk/Source/WTF/ChangeLog	2018-10-17 21:55:36 UTC (rev 237236)
+++ trunk/Source/WTF/ChangeLog	2018-10-17 23:06:02 UTC (rev 237237)
@@ -1,3 +1,17 @@
+2018-10-17  Commit Queue  <commit-qu...@webkit.org>
+
+        Unreviewed, rolling out r237208.
+        https://bugs.webkit.org/show_bug.cgi?id=190691
+
+        Caused the API test that was changed to failure continuously
+        (Requested by Truitt on #webkit).
+
+        Reverted changeset:
+
+        "[Media] Use nanoseconds as MaximumTimeScale"
+        https://bugs.webkit.org/show_bug.cgi?id=190631
+        https://trac.webkit.org/changeset/237208
+
 2018-10-16  Alicia Boya GarcĂ­a  <ab...@igalia.com>
 
         [Media] Use nanoseconds as MaximumTimeScale

Modified: trunk/Source/WTF/wtf/MediaTime.cpp (237236 => 237237)


--- trunk/Source/WTF/wtf/MediaTime.cpp	2018-10-17 21:55:36 UTC (rev 237236)
+++ trunk/Source/WTF/wtf/MediaTime.cpp	2018-10-17 23:06:02 UTC (rev 237237)
@@ -61,7 +61,7 @@
     return (0 < val) - (val < 0);
 }
 
-const uint32_t MediaTime::MaximumTimeScale = 1000000000;
+const uint32_t MediaTime::MaximumTimeScale = 0x7fffffffL;
 
 MediaTime::MediaTime()
     : m_timeValue(0)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to