forked from pool/qt6-webengine
9ba7c0e191
Qt 6.7.0. qtwebengine is still building OBS-URL: https://build.opensuse.org/request/show/1164304 OBS-URL: https://build.opensuse.org/package/show/KDE:Qt6/qt6-webengine?expand=0&rev=60
24 lines
903 B
Diff
24 lines
903 B
Diff
From: Fabian Vogt <fabian@ritter-vogt.de>
|
|
Subject: Don't require open264 when proprietary_codecs are supported
|
|
|
|
Amended on 2024-01-30: also disable h265
|
|
|
|
diff --git a/src/3rdparty/chromium/third_party/webrtc/webrtc.gni b/src/3rdparty/chromium/third_party/webrtc/webrtc.gni
|
|
index 5a1c43c8888..d867f7e5330 100644
|
|
--- a/src/3rdparty/chromium/third_party/webrtc/webrtc.gni
|
|
+++ b/src/3rdparty/chromium/third_party/webrtc/webrtc.gni
|
|
@@ -186,11 +186,10 @@ declare_args() {
|
|
#
|
|
# Enabling H264 when building with MSVC is currently not supported, see
|
|
# bugs.webrtc.org/9213#c13 for more info.
|
|
- rtc_use_h264 =
|
|
- proprietary_codecs && !is_android && !is_ios && !(is_win && !is_clang)
|
|
+ rtc_use_h264 = false
|
|
|
|
# Enable to use H265
|
|
- rtc_use_h265 = proprietary_codecs
|
|
+ rtc_use_h265 = false
|
|
|
|
# Enable this flag to make webrtc::Mutex be implemented by absl::Mutex.
|
|
rtc_use_absl_mutex = false
|