Title: [255970] trunk/Source/WTF
Revision
255970
Author
ryanhad...@apple.com
Date
2020-02-06 11:53:08 -0800 (Thu, 06 Feb 2020)

Log Message

[Cocoa] Use AVAssetWriterDelegate to implement MediaRecorder
https://bugs.webkit.org/show_bug.cgi?id=206582

Unreviewed internal build fix attempt.

* wtf/PlatformHave.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (255969 => 255970)


--- trunk/Source/WTF/ChangeLog	2020-02-06 19:26:45 UTC (rev 255969)
+++ trunk/Source/WTF/ChangeLog	2020-02-06 19:53:08 UTC (rev 255970)
@@ -1,3 +1,12 @@
+2020-02-06  Ryan Haddad  <ryanhad...@apple.com>
+
+        [Cocoa] Use AVAssetWriterDelegate to implement MediaRecorder
+        https://bugs.webkit.org/show_bug.cgi?id=206582
+
+        Unreviewed internal build fix attempt.
+
+        * wtf/PlatformHave.h:
+
 2020-02-06  youenn fablet  <you...@apple.com>
 
         [Cocoa] Use AVAssetWriterDelegate to implement MediaRecorder

Modified: trunk/Source/WTF/wtf/PlatformHave.h (255969 => 255970)


--- trunk/Source/WTF/wtf/PlatformHave.h	2020-02-06 19:26:45 UTC (rev 255969)
+++ trunk/Source/WTF/wtf/PlatformHave.h	2020-02-06 19:53:08 UTC (rev 255970)
@@ -566,7 +566,7 @@
 #define HAVE_OS_SIGNPOST 1
 #endif
 
-#if PLATFORM(COCOA) && (defined __has_include && __has_include(<AVFoundation/AVAssetWriter_Private.h>))
+#if (PLATFORM(IOS) || (PLATFORM(MAC) && && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500 ) && (defined __has_include && __has_include(<AVFoundation/AVAssetWriter_Private.h>))
 #define HAVE_AVASSETWRITERDELEGATE 1
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to