Diff
Modified: branches/safari-613.1.3-branch/LayoutTests/ChangeLog (283369 => 283370)
--- branches/safari-613.1.3-branch/LayoutTests/ChangeLog 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/LayoutTests/ChangeLog 2021-10-01 15:35:47 UTC (rev 283370)
@@ -2002,17 +2002,6 @@
* platform/wpe/fast/text/font-weight-parse-expected.txt:
* svg/css/getComputedStyle-basic-expected.txt:
-2021-09-16 Youenn Fablet <[email protected]>
-
- Enable RTCRtpScriptTransform by default
- https://bugs.webkit.org/show_bug.cgi?id=230220
- <rdar://problem/83090247>
-
- Reviewed by Eric Carlson.
-
- * http/wpt/webrtc/no-webrtc-transform.html:
- Migrate to new internal setting.
-
2021-09-16 Cameron McCormack <[email protected]>
Disable display-p3 canvas and ImageData on platforms other than Monterey+ and iOS 15+
Modified: branches/safari-613.1.3-branch/LayoutTests/http/wpt/webrtc/no-webrtc-transform.html (283369 => 283370)
--- branches/safari-613.1.3-branch/LayoutTests/http/wpt/webrtc/no-webrtc-transform.html 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/LayoutTests/http/wpt/webrtc/no-webrtc-transform.html 2021-10-01 15:35:47 UTC (rev 283370)
@@ -9,7 +9,7 @@
<script>
promise_test(async (test) => {
if (window.internals)
- internals.settings.setWebRTCEncodedTransformEnabled(true);
+ internals.settings.setWebRTCInsertableStreamsEnabled(true);
const worker = new Worker('no-transform.js');
const data = "" new Promise(resolve => worker._onmessage_ = (event) => resolve(event.data));
@@ -18,7 +18,7 @@
promise_test(async (test) => {
if (window.internals)
- internals.settings.setWebRTCEncodedTransformEnabled(false);
+ internals.settings.setWebRTCInsertableStreamsEnabled(false);
const worker = new Worker('no-transform.js');
const data = "" new Promise(resolve => worker._onmessage_ = (event) => resolve(event.data));
Modified: branches/safari-613.1.3-branch/Source/WTF/ChangeLog (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WTF/ChangeLog 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WTF/ChangeLog 2021-10-01 15:35:47 UTC (rev 283370)
@@ -420,18 +420,6 @@
Stop using __has_include in favor of version checks, now that
the header has been around for a while.
-2021-09-16 Youenn Fablet <[email protected]>
-
- Enable RTCRtpScriptTransform by default
- https://bugs.webkit.org/show_bug.cgi?id=230220
-
- Reviewed by Eric Carlson.
-
- Splitting WebRTCInsertableStreamsEnabled to WebRTCEncodedTransformEnabled and WebRTCSFrameTransformEnabled.
- Keeping WebRTCSFrameTransformEnabled as off by default until SFrame solidifies and mark WebRTCEncodedTransformEnabled as on by default.
-
- * Scripts/Preferences/WebPreferencesExperimental.yaml:
-
2021-09-16 Cameron McCormack <[email protected]>
Disable display-p3 canvas and ImageData on platforms other than Monterey+ and iOS 15+
Modified: branches/safari-613.1.3-branch/Source/WTF/Scripts/Preferences/WebPreferencesExperimental.yaml (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WTF/Scripts/Preferences/WebPreferencesExperimental.yaml 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WTF/Scripts/Preferences/WebPreferencesExperimental.yaml 2021-10-01 15:35:47 UTC (rev 283370)
@@ -1427,19 +1427,6 @@
WebKit:
default: WebKit::defaultWebMParserEnabled()
-WebRTCEncodedTransformEnabled:
- type: bool
- condition: ENABLE(WEB_RTC)
- humanReadableName: "WebRTC Encoded Transform API"
- humanReadableDescription: "Enable WebRTC Encoded Transform API"
- defaultValue:
- WebKitLegacy:
- default: false
- WebKit:
- default: true
- WebCore:
- default: true
-
# FIXME: Is this implemented for WebKitLegacy? If not, this should be excluded from WebKitLegacy entirely.
WebRTCH264LowLatencyEncoderEnabled:
type: bool
@@ -1466,6 +1453,19 @@
WebKit:
default: false
+WebRTCInsertableStreamsEnabled:
+ type: bool
+ condition: ENABLE(WEB_RTC)
+ humanReadableName: "WebRTC Insertable Streams API"
+ humanReadableDescription: "Enable WebRTC Insertable Streams API"
+ defaultValue:
+ WebKitLegacy:
+ default: false
+ WebKit:
+ default: false
+ WebCore:
+ default: false
+
# FIXME: This is not relevent for WebKitLegacy, so should be excluded from WebKitLegacy entirely.
WebRTCPlatformCodecsInGPUProcessEnabled:
type: bool
@@ -1500,19 +1500,6 @@
WebKit:
default: true
-WebRTCSFrameTransformEnabled:
- type: bool
- condition: ENABLE(WEB_RTC)
- humanReadableName: "WebRTC SFrame Transform API"
- humanReadableDescription: "Enable WebRTC SFrame Transform API"
- defaultValue:
- WebKitLegacy:
- default: false
- WebKit:
- default: false
- WebCore:
- default: false
-
WebRTCSocketsProxyingEnabled:
type: bool
humanReadableName: "WebRTC Sockets Proxying"
Modified: branches/safari-613.1.3-branch/Source/WebCore/ChangeLog (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WebCore/ChangeLog 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WebCore/ChangeLog 2021-10-01 15:35:47 UTC (rev 283370)
@@ -7470,27 +7470,6 @@
* Sources.txt:
* WebCore.xcodeproj/project.pbxproj:
-2021-09-16 Youenn Fablet <[email protected]>
-
- Enable RTCRtpScriptTransform by default
- https://bugs.webkit.org/show_bug.cgi?id=230220
-
- Reviewed by Eric Carlson.
-
- No change of behavior, renaming WebRTCInsertableStreamsEnabled to WebRTCEncodedTransformEnabled
- and WebRTCSFrameTransformEnabled.
-
- * Modules/mediastream/RTCEncodedAudioFrame.idl:
- * Modules/mediastream/RTCEncodedVideoFrame.idl:
- * Modules/mediastream/RTCRtpReceiver+Transform.idl:
- * Modules/mediastream/RTCRtpSFrameTransform.idl:
- * Modules/mediastream/RTCRtpSFrameTransformErrorEvent.idl:
- * Modules/mediastream/RTCRtpScriptTransform.idl:
- * Modules/mediastream/RTCRtpScriptTransformer.idl:
- * Modules/mediastream/RTCRtpSender+Transform.idl:
- * Modules/mediastream/RTCTransformEvent.idl:
- * workers/DedicatedWorkerGlobalScope.idl:
-
2021-09-16 Cameron McCormack <[email protected]>
Disable display-p3 canvas and ImageData on platforms other than Monterey+ and iOS 15+
Modified: branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCEncodedAudioFrame.idl (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCEncodedAudioFrame.idl 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCEncodedAudioFrame.idl 2021-10-01 15:35:47 UTC (rev 283370)
@@ -34,7 +34,7 @@
[
Conditional=WEB_RTC,
- EnabledBySetting=WebRTCEncodedTransform,
+ EnabledBySetting=WebRTCInsertableStreams,
Exposed=DedicatedWorker,
ImplementationLacksVTable,
] interface RTCEncodedAudioFrame {
Modified: branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCEncodedVideoFrame.idl (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCEncodedVideoFrame.idl 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCEncodedVideoFrame.idl 2021-10-01 15:35:47 UTC (rev 283370)
@@ -43,7 +43,7 @@
[
Conditional=WEB_RTC,
- EnabledBySetting=WebRTCEncodedTransform,
+ EnabledBySetting=WebRTCInsertableStreams,
Exposed=DedicatedWorker,
ImplementationLacksVTable,
] interface RTCEncodedVideoFrame {
Modified: branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpReceiver+Transform.idl (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpReceiver+Transform.idl 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpReceiver+Transform.idl 2021-10-01 15:35:47 UTC (rev 283370)
@@ -27,7 +27,7 @@
[
Conditional=WEB_RTC,
- EnabledBySetting=WebRTCEncodedTransform,
+ EnabledBySetting=WebRTCInsertableStreams,
Exposed=Window,
ImplementedBy=RTCRtpReceiverWithTransform,
] partial interface RTCRtpReceiver {
Modified: branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpSFrameTransform.idl (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpSFrameTransform.idl 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpSFrameTransform.idl 2021-10-01 15:35:47 UTC (rev 283370)
@@ -43,7 +43,7 @@
[
ActiveDOMObject,
Conditional=WEB_RTC,
- EnabledBySetting=WebRTCSFrameTransform,
+ EnabledBySetting=WebRTCInsertableStreams,
ExportMacro=WEBCORE_EXPORT,
Exposed=(Window,DedicatedWorker),
InterfaceName=SFrameTransform,
Modified: branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpSFrameTransformErrorEvent.idl (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpSFrameTransformErrorEvent.idl 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpSFrameTransformErrorEvent.idl 2021-10-01 15:35:47 UTC (rev 283370)
@@ -36,7 +36,7 @@
[
Conditional=WEB_RTC,
- EnabledBySetting=WebRTCSFrameTransform,
+ EnabledBySetting=WebRTCInsertableStreams,
Exposed=(Window,DedicatedWorker),
InterfaceName=SFrameTransformErrorEvent
] interface RTCRtpSFrameTransformErrorEvent : Event {
Modified: branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpScriptTransform.idl (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpScriptTransform.idl 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpScriptTransform.idl 2021-10-01 15:35:47 UTC (rev 283370)
@@ -26,7 +26,7 @@
[
ActiveDOMObject,
Conditional=WEB_RTC,
- EnabledBySetting=WebRTCEncodedTransform,
+ EnabledBySetting=WebRTCInsertableStreams,
Exposed=Window,
JSGenerateToNativeObject,
] interface RTCRtpScriptTransform : EventTarget {
Modified: branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpScriptTransformer.idl (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpScriptTransformer.idl 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpScriptTransformer.idl 2021-10-01 15:35:47 UTC (rev 283370)
@@ -26,7 +26,7 @@
[
ActiveDOMObject,
Conditional=WEB_RTC,
- EnabledBySetting=WebRTCEncodedTransform,
+ EnabledBySetting=WebRTCInsertableStreams,
Exposed=DedicatedWorker,
JSGenerateToNativeObject,
] interface RTCRtpScriptTransformer {
Modified: branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpSender+Transform.idl (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpSender+Transform.idl 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCRtpSender+Transform.idl 2021-10-01 15:35:47 UTC (rev 283370)
@@ -27,7 +27,7 @@
[
Conditional=WEB_RTC,
- EnabledBySetting=WebRTCEncodedTransform,
+ EnabledBySetting=WebRTCInsertableStreams,
Exposed=Window,
ImplementedBy=RTCRtpSenderWithTransform,
] partial interface RTCRtpSender {
Modified: branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCTransformEvent.idl (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCTransformEvent.idl 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WebCore/Modules/mediastream/RTCTransformEvent.idl 2021-10-01 15:35:47 UTC (rev 283370)
@@ -24,7 +24,7 @@
[
Conditional=WEB_RTC,
- EnabledBySetting=WebRTCEncodedTransform,
+ EnabledBySetting=WebRTCInsertableStreams,
Exposed=Worker,
InterfaceName=RTCTransformEvent,
] interface RTCTransformEvent : Event {
Modified: branches/safari-613.1.3-branch/Source/WebCore/workers/DedicatedWorkerGlobalScope.idl (283369 => 283370)
--- branches/safari-613.1.3-branch/Source/WebCore/workers/DedicatedWorkerGlobalScope.idl 2021-10-01 15:34:21 UTC (rev 283369)
+++ branches/safari-613.1.3-branch/Source/WebCore/workers/DedicatedWorkerGlobalScope.idl 2021-10-01 15:35:47 UTC (rev 283370)
@@ -46,4 +46,4 @@
};
[Conditional=OFFSCREEN_CANVAS_IN_WORKERS, EnabledAtRuntime=OffscreenCanvasInWorkers] DedicatedWorkerGlobalScope includes AnimationFrameProvider;
-[Conditional=WEB_RTC, EnabledBySetting=WebRTCEncodedTransform] DedicatedWorkerGlobalScope includes RTCRtpScriptTransformProvider;
+[Conditional=WEB_RTC, EnabledBySetting=WebRTCInsertableStreams] DedicatedWorkerGlobalScope includes RTCRtpScriptTransformProvider;