Title: [234164] trunk/Source/WebCore
Revision
234164
Author
[email protected]
Date
2018-07-24 12:31:03 -0700 (Tue, 24 Jul 2018)

Log Message

[MediaStream] Restructure getDisplayMedia classes
https://bugs.webkit.org/show_bug.cgi?id=187905
<rdar://problem/42500215>

Unreviewed build fix.


* platform/mediastream/mac/DisplayCaptureSourceCocoa.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (234163 => 234164)


--- trunk/Source/WebCore/ChangeLog	2018-07-24 19:30:36 UTC (rev 234163)
+++ trunk/Source/WebCore/ChangeLog	2018-07-24 19:31:03 UTC (rev 234164)
@@ -1,3 +1,13 @@
+2018-07-24  Eric Carlson  <[email protected]>
+
+        [MediaStream] Restructure getDisplayMedia classes
+        https://bugs.webkit.org/show_bug.cgi?id=187905
+        <rdar://problem/42500215>
+
+        Unreviewed build fix.
+
+        * platform/mediastream/mac/DisplayCaptureSourceCocoa.cpp: 
+
 2018-07-24  Antoine Quint  <[email protected]>
 
         [Web Animations] Crash when setting "animation: none" after clearing an animation's effect

Modified: trunk/Source/WebCore/platform/mediastream/mac/DisplayCaptureSourceCocoa.cpp (234163 => 234164)


--- trunk/Source/WebCore/platform/mediastream/mac/DisplayCaptureSourceCocoa.cpp	2018-07-24 19:30:36 UTC (rev 234163)
+++ trunk/Source/WebCore/platform/mediastream/mac/DisplayCaptureSourceCocoa.cpp	2018-07-24 19:31:03 UTC (rev 234164)
@@ -42,6 +42,8 @@
 #include <wtf/MainThread.h>
 #include <wtf/NeverDestroyed.h>
 
+#include "CoreVideoSoftLink.h"
+
 namespace WebCore {
 using namespace PAL;
 
@@ -178,7 +180,7 @@
     return adoptCF(sampleBuffer);
 }
 
-#if HAVE(IOSURFACE)
+#if HAVE(IOSURFACE) && PLATFORM(MAC)
 static int32_t roundUpToMacroblockMultiple(int32_t size)
 {
     return (size + 15) & ~15;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to