Changeset 279065 in webkit
- Timestamp:
- Jun 21, 2021, 3:13:28 AM (5 years ago)
- Location:
- trunk/Source/ThirdParty/libwebrtc
- Files:
-
- 2 edited
-
CMakeLists.txt (modified) (3 diffs)
-
ChangeLog (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/ThirdParty/libwebrtc/CMakeLists.txt
r278701 r279065 5 5 6 6 if (NOT APPLE) 7 find_package(LibVpx 1. 7.0)7 find_package(LibVpx 1.10.0) 8 8 if (NOT LIBVPX_FOUND) 9 9 message(FATAL_ERROR "libvpx is needed for USE_LIBWEBRTC.") … … 1675 1675 WEBRTC_CODEC_OPUS 1676 1676 WEBRTC_CODEC_RED 1677 WEBRTC_HAVE_SCTP 1678 WEBRTC_HAVE_USRSCTP 1677 1679 WEBRTC_INCLUDE_INTERNAL_AUDIO_DEVICE 1678 1680 WEBRTC_INTELLIGIBILITY_ENHANCER=0 … … 1732 1734 Source/third_party/libsrtp/include 1733 1735 Source/third_party/libyuv/include 1734 Source/third_party/libvpx/source/libvpx1735 1736 Source/third_party/opus/src/celt 1736 1737 Source/third_party/opus/src/include -
trunk/Source/ThirdParty/libwebrtc/ChangeLog
r279023 r279065 1 2021-06-21 Philippe Normand <pnormand@igalia.com> 2 3 [GLIB] REGRESSION(r278701): numerous WebRTC tests failing after libwebrtc update to M92 4 https://bugs.webkit.org/show_bug.cgi?id=227172 5 6 Reviewed by Adrian Perez de Castro. 7 8 Non-apple ports do not use the bundled libvpx library, they rely on the host libvpx instead. 9 LibWebRTC expects to depend on the bundled version, thus using its API. So we need to be 10 very careful with which libvpx version is used from the host, in order to avoid API/ABI 11 issues. Hence the version check should specify a version that is API/ABI compatible with 12 what libwebrtc expects. 13 14 This patch also re-enables data channel support, which was disabled during the update to M92 15 in CMake ports. 16 17 * CMakeLists.txt: 18 1 19 2021-06-17 Commit Queue <commit-queue@webkit.org> 2 20
Note:
See TracChangeset
for help on using the changeset viewer.