Title: [237546] trunk/Source
Revision
237546
Author
you...@apple.com
Date
2018-10-29 03:47:30 -0700 (Mon, 29 Oct 2018)

Log Message

[WebRTC] Enable VP8 by default
https://bugs.webkit.org/show_bug.cgi?id=190672
Source/WebCore:

<rdar://problem/43663785>

Reviewed by Eric Carlson.

No change of behavior.

* page/RuntimeEnabledFeatures.h: Set default value to true.

Source/WebKit:

Reviewed by Eric Carlson.

* Shared/WebPreferences.yaml:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (237545 => 237546)


--- trunk/Source/WebCore/ChangeLog	2018-10-29 10:42:31 UTC (rev 237545)
+++ trunk/Source/WebCore/ChangeLog	2018-10-29 10:47:30 UTC (rev 237546)
@@ -1,3 +1,15 @@
+2018-10-29  Youenn Fablet  <you...@apple.com>
+
+        [WebRTC] Enable VP8 by default
+        https://bugs.webkit.org/show_bug.cgi?id=190672
+        <rdar://problem/43663785>
+
+        Reviewed by Eric Carlson.
+
+        No change of behavior.
+
+        * page/RuntimeEnabledFeatures.h: Set default value to true.
+
 2018-10-28  Andy Estes  <aes...@apple.com>
 
         [Payment Request] Implement MerchantValidationEvent.methodName

Modified: trunk/Source/WebCore/page/RuntimeEnabledFeatures.h (237545 => 237546)


--- trunk/Source/WebCore/page/RuntimeEnabledFeatures.h	2018-10-29 10:42:31 UTC (rev 237545)
+++ trunk/Source/WebCore/page/RuntimeEnabledFeatures.h	2018-10-29 10:47:30 UTC (rev 237546)
@@ -394,7 +394,7 @@
 #endif
 
 #if ENABLE(WEB_RTC)
-    bool m_isWebRTCVP8CodecEnabled { false };
+    bool m_isWebRTCVP8CodecEnabled { true };
     bool m_isWebRTCUnifiedPlanEnabled { true };
     bool m_isPeerConnectionEnabled { true };
     bool m_mdnsICECandidatesEnabled { false };

Modified: trunk/Source/WebKit/ChangeLog (237545 => 237546)


--- trunk/Source/WebKit/ChangeLog	2018-10-29 10:42:31 UTC (rev 237545)
+++ trunk/Source/WebKit/ChangeLog	2018-10-29 10:47:30 UTC (rev 237546)
@@ -1,3 +1,12 @@
+2018-10-29  Youenn Fablet  <you...@apple.com>
+
+        [WebRTC] Enable VP8 by default
+        https://bugs.webkit.org/show_bug.cgi?id=190672
+
+        Reviewed by Eric Carlson.
+
+        * Shared/WebPreferences.yaml:
+
 2018-10-28  Zan Dobersek  <zdober...@igalia.com>
 
         [WPE] Add the WebKitVersion.h header

Modified: trunk/Source/WebKit/Shared/WebPreferences.yaml (237545 => 237546)


--- trunk/Source/WebKit/Shared/WebPreferences.yaml	2018-10-29 10:42:31 UTC (rev 237545)
+++ trunk/Source/WebKit/Shared/WebPreferences.yaml	2018-10-29 10:47:30 UTC (rev 237546)
@@ -516,7 +516,7 @@
 
 WebRTCVP8CodecEnabled:
   type: bool
-  defaultValue: false
+  defaultValue: true
   webcoreBinding: RuntimeEnabledFeatures
   condition: ENABLE(WEB_RTC)
   humanReadableName: "WebRTC VP8 codec"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to