Title: [266657] trunk/Source/WebCore
Revision
266657
Author
[email protected]
Date
2020-09-05 00:20:02 -0700 (Sat, 05 Sep 2020)

Log Message

Fix the build after r266614
https://bugs.webkit.org/show_bug.cgi?id=216174

Unreviewed.

* testing/Internals.cpp:
(WebCore::Internals::supportsVCPEncoder): These parentheses really should be in
Source/ThirdParty/libwebrtc/Source/webrtc/sdk/WebKit/VideoProcessingSoftLink.h,
but I don't know the process for updating that third-party library. This is a
short-term build fix.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (266656 => 266657)


--- trunk/Source/WebCore/ChangeLog	2020-09-05 06:43:37 UTC (rev 266656)
+++ trunk/Source/WebCore/ChangeLog	2020-09-05 07:20:02 UTC (rev 266657)
@@ -1,3 +1,16 @@
+2020-09-05  Myles C. Maxfield  <[email protected]>
+
+        Fix the build after r266614
+        https://bugs.webkit.org/show_bug.cgi?id=216174
+
+        Unreviewed.
+
+        * testing/Internals.cpp:
+        (WebCore::Internals::supportsVCPEncoder): These parentheses really should be in
+        Source/ThirdParty/libwebrtc/Source/webrtc/sdk/WebKit/VideoProcessingSoftLink.h,
+        but I don't know the process for updating that third-party library. This is a
+        short-term build fix.
+
 2020-09-04  Tyler Wilcock  <[email protected]>
 
         CSS :visited color taken on non-visited link when using CSS variables

Modified: trunk/Source/WebCore/testing/Internals.cpp (266656 => 266657)


--- trunk/Source/WebCore/testing/Internals.cpp	2020-09-05 06:43:37 UTC (rev 266656)
+++ trunk/Source/WebCore/testing/Internals.cpp	2020-09-05 07:20:02 UTC (rev 266657)
@@ -5681,7 +5681,7 @@
 bool Internals::supportsVCPEncoder()
 {
 #if defined(ENABLE_VCP_ENCODER)
-    return ENABLE_VCP_ENCODER || ENABLE_VCP_VTB_ENCODER || HAVE_VTB_REQUIREDLOWLATENCY;
+    return ENABLE_VCP_ENCODER || (ENABLE_VCP_VTB_ENCODER) || HAVE_VTB_REQUIREDLOWLATENCY;
 #else
     return false;
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to