18 lines
729 B
Diff
18 lines
729 B
Diff
From: Fabian Vogt <fabian@ritter-vogt.de>
|
|
Subject: Don't require open264 when proprietary_codecs are supported
|
|
|
|
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,8 +186,7 @@ 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
|