[webkit-changes] [WebKit/WebKit] d6b793: Cherry-pick 283089 at main (ef7ef86e4cf5). https://bu...
Carlos Bentzen
noreply at github.com
Mon Sep 9 00:50:49 PDT 2024
Branch: refs/heads/webkitglib/2.46
Home: https://github.com/WebKit/WebKit
Commit: d6b793c48b9cf3ac9bd882d3a8af2ddbf4e10a6a
https://github.com/WebKit/WebKit/commit/d6b793c48b9cf3ac9bd882d3a8af2ddbf4e10a6a
Author: Philippe Normand <philn at igalia.com>
Date: 2024-09-06 (Fri, 06 Sep 2024)
Changed paths:
M LayoutTests/TestExpectations
M LayoutTests/imported/w3c/resources/import-expectations.json
A LayoutTests/imported/w3c/web-platform-tests/webrtc/legacy/README.txt
A LayoutTests/imported/w3c/web-platform-tests/webrtc/legacy/RTCPeerConnection-createOffer-offerToReceive-expected.txt
A LayoutTests/imported/w3c/web-platform-tests/webrtc/legacy/RTCPeerConnection-createOffer-offerToReceive.html
A LayoutTests/imported/w3c/web-platform-tests/webrtc/legacy/RTCRtpTransceiver-with-OfferToReceive-options.https-expected.txt
A LayoutTests/imported/w3c/web-platform-tests/webrtc/legacy/RTCRtpTransceiver-with-OfferToReceive-options.https.html
A LayoutTests/imported/w3c/web-platform-tests/webrtc/legacy/munge-dont-expected.txt
A LayoutTests/imported/w3c/web-platform-tests/webrtc/legacy/munge-dont.html
A LayoutTests/imported/w3c/web-platform-tests/webrtc/legacy/onaddstream.https.html
A LayoutTests/imported/w3c/web-platform-tests/webrtc/legacy/simplecall_callbacks.https.html
A LayoutTests/imported/w3c/web-platform-tests/webrtc/legacy/w3c-import.log
M LayoutTests/platform/glib/TestExpectations
M LayoutTests/tests-options.json
M Source/WTF/Scripts/Preferences/UnifiedWebPreferences.yaml
M Source/WebCore/Modules/mediastream/PeerConnectionBackend.cpp
M Source/WebCore/Modules/mediastream/PeerConnectionBackend.h
M Source/WebCore/Modules/mediastream/RTCOfferOptions.h
M Source/WebCore/Modules/mediastream/RTCOfferOptions.idl
M Source/WebCore/Modules/mediastream/RTCPeerConnection.cpp
M Source/WebCore/Modules/mediastream/RTCPeerConnection.h
M Source/WebCore/Modules/mediastream/gstreamer/GStreamerMediaEndpoint.cpp
M Source/WebCore/Modules/mediastream/gstreamer/GStreamerMediaEndpoint.h
M Source/WebCore/Modules/mediastream/gstreamer/GStreamerPeerConnectionBackend.cpp
M Source/WebCore/Modules/mediastream/gstreamer/GStreamerPeerConnectionBackend.h
M Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.cpp
M Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.h
M Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCPeerConnectionBackend.cpp
M Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCPeerConnectionBackend.h
Log Message:
-----------
Cherry-pick 283089 at main (ef7ef86e4cf5). https://bugs.webkit.org/show_bug.cgi?id=256707
[WebRTC] Add support for legacy Offer options
https://bugs.webkit.org/show_bug.cgi?id=256707
<rdar://problem/109569164>
Reviewed by Youenn Fablet.
Some websites still rely on the legacy offer options, despite the spec recommendation of using
transceivers, so bring back those options, behind a runtime WebPreference, disabled by default.
Covered by new tests backported from WPT.
Upstream commit: https://github.com/web-platform-tests/wpt/commit/9c29d4eefd4d5d41822f6fdccaf59b14f0603965
* LayoutTests/TestExpectations:
* LayoutTests/platform/glib/TestExpectations:
* Source/WTF/Scripts/Preferences/UnifiedWebPreferences.yaml:
* Source/WebCore/Modules/mediastream/PeerConnectionBackend.cpp:
(WebCore::PeerConnectionBackend::addTransceiver):
* Source/WebCore/Modules/mediastream/PeerConnectionBackend.h:
* Source/WebCore/Modules/mediastream/RTCOfferOptions.h:
* Source/WebCore/Modules/mediastream/RTCOfferOptions.idl:
* Source/WebCore/Modules/mediastream/RTCPeerConnection.cpp:
(WebCore::RTCPeerConnection::addReceiveOnlyTransceiver):
(WebCore::RTCPeerConnection::createOffer):
* Source/WebCore/Modules/mediastream/RTCPeerConnection.h:
* Source/WebCore/Modules/mediastream/gstreamer/GStreamerMediaEndpoint.cpp:
(WebCore::GStreamerMediaEndpoint::createTransceiverBackends):
(WebCore::GStreamerMediaEndpoint::addTransceiver):
(WebCore::GStreamerMediaEndpoint::onNegotiationNeeded):
* Source/WebCore/Modules/mediastream/gstreamer/GStreamerMediaEndpoint.h:
* Source/WebCore/Modules/mediastream/gstreamer/GStreamerPeerConnectionBackend.cpp:
(WebCore::GStreamerPeerConnectionBackend::addTransceiverFromTrackOrKind):
(WebCore::GStreamerPeerConnectionBackend::addTransceiver):
* Source/WebCore/Modules/mediastream/gstreamer/GStreamerPeerConnectionBackend.h:
* Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.cpp:
(WebCore::LibWebRTCMediaEndpoint::createTransceiverBackends):
(WebCore::LibWebRTCMediaEndpoint::addTransceiver):
(WebCore::LibWebRTCMediaEndpoint::OnNegotiationNeededEvent):
* Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.h:
* Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCPeerConnectionBackend.cpp:
(WebCore::LibWebRTCPeerConnectionBackend::addTransceiverFromTrackOrKind):
(WebCore::LibWebRTCPeerConnectionBackend::addTransceiver):
* Source/WebCore/Modules/mediastream/libwebrtc/LibWebRTCPeerConnectionBackend.h:
Canonical link: https://commits.webkit.org/283089@main
Canonical link: https://commits.webkit.org/282416.72@webkitglib/2.46
Commit: 5b05f070a0989436add93c7a60ae2d7d71293f98
https://github.com/WebKit/WebKit/commit/5b05f070a0989436add93c7a60ae2d7d71293f98
Author: Carlos Bentzen <cadubentzen at igalia.com>
Date: 2024-09-06 (Fri, 06 Sep 2024)
Changed paths:
M Source/WebCore/platform/GStreamer.cmake
Log Message:
-----------
Cherry-pick 283147 at main (3a6f81850d95). https://bugs.webkit.org/show_bug.cgi?id=279114
[GStreamer] Do not link transcoder libraries with USE_GSTREAMER_FULL
https://bugs.webkit.org/show_bug.cgi?id=279114
Reviewed by Philippe Normand.
All gstreamer-related libraries are linked in via the single gstreamer-full library
when using USE_GSTREAMER_FULL. The `NOT USE_GSTREAMER_FULL` check is done for the
other gstreamer libraries but was missing for transcoder libraries.
* Source/WebCore/platform/GStreamer.cmake:
Canonical link: https://commits.webkit.org/283147@main
Canonical link: https://commits.webkit.org/282416.73@webkitglib/2.46
Compare: https://github.com/WebKit/WebKit/compare/ee2d7b1914f8...5b05f070a098
To unsubscribe from these emails, change your notification settings at https://github.com/WebKit/WebKit/settings/notifications
More information about the webkit-changes
mailing list