Title: [273968] trunk/Source/WebCore/PAL
Revision
273968
Author
[email protected]
Date
2021-03-05 08:10:13 -0800 (Fri, 05 Mar 2021)

Log Message

Fix my iOS Simulator build.
https://bugs.webkit.org/show_bug.cgi?id=222041

* pal/spi/cocoa/AVStreamDataParserSPI.h:
My build couldn't find what CMSampleBufferRef was supposed to mean, so I include CoreMedia.h.
I have no idea why all the bots build successfully.

Modified Paths

Diff

Modified: trunk/Source/WebCore/PAL/ChangeLog (273967 => 273968)


--- trunk/Source/WebCore/PAL/ChangeLog	2021-03-05 15:50:23 UTC (rev 273967)
+++ trunk/Source/WebCore/PAL/ChangeLog	2021-03-05 16:10:13 UTC (rev 273968)
@@ -1,3 +1,12 @@
+2021-03-05  Alex Christensen  <[email protected]>
+
+        Fix my iOS Simulator build.
+        https://bugs.webkit.org/show_bug.cgi?id=222041
+
+        * pal/spi/cocoa/AVStreamDataParserSPI.h:
+        My build couldn't find what CMSampleBufferRef was supposed to mean, so I include CoreMedia.h.
+        I have no idea why all the bots build successfully.
+
 2021-03-04  Chris Dumez  <[email protected]>
 
         Set ownership of IOSurfaces from the GPUProcess instead of the WebProcess

Modified: trunk/Source/WebCore/PAL/pal/spi/cocoa/AVStreamDataParserSPI.h (273967 => 273968)


--- trunk/Source/WebCore/PAL/pal/spi/cocoa/AVStreamDataParserSPI.h	2021-03-05 15:50:23 UTC (rev 273967)
+++ trunk/Source/WebCore/PAL/pal/spi/cocoa/AVStreamDataParserSPI.h	2021-03-05 16:10:13 UTC (rev 273968)
@@ -23,6 +23,8 @@
  * THE POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include <CoreMedia/CoreMedia.h>
+
 NS_ASSUME_NONNULL_BEGIN
 
 @protocol AVStreamDataParserOutputHandling;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to