Title: [213678] trunk/Source/WTF
Revision
213678
Author
[email protected]
Date
2017-03-09 14:47:29 -0800 (Thu, 09 Mar 2017)

Log Message

Activate VideoToolbox when WebRTC is enabled on iOS
https://bugs.webkit.org/show_bug.cgi?id=169423

Patch by Youenn Fablet <[email protected]> on 2017-03-09
Reviewed by Jon Lee.

* wtf/Platform.h: Activate VIDEOTOOLBOX if WEBRTC is enabled.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (213677 => 213678)


--- trunk/Source/WTF/ChangeLog	2017-03-09 22:47:01 UTC (rev 213677)
+++ trunk/Source/WTF/ChangeLog	2017-03-09 22:47:29 UTC (rev 213678)
@@ -1,3 +1,12 @@
+2017-03-09  Youenn Fablet  <[email protected]>
+
+        Activate VideoToolbox when WebRTC is enabled on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=169423
+
+        Reviewed by Jon Lee.
+
+        * wtf/Platform.h: Activate VIDEOTOOLBOX if WEBRTC is enabled.
+
 2017-03-09  Filip Pizlo  <[email protected]>
 
         std::isnan/isinf/isfinite should work with WTF time classes

Modified: trunk/Source/WTF/wtf/Platform.h (213677 => 213678)


--- trunk/Source/WTF/wtf/Platform.h	2017-03-09 22:47:01 UTC (rev 213677)
+++ trunk/Source/WTF/wtf/Platform.h	2017-03-09 22:47:29 UTC (rev 213678)
@@ -1032,7 +1032,7 @@
 #define HAVE_AVFOUNDATION_LOADER_DELEGATE 1
 #endif
 
-#if PLATFORM(MAC)
+#if PLATFORM(MAC) || (PLATFORM(IOS) && ENABLE(WEB_RTC))
 #define USE_VIDEOTOOLBOX 1
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to