From f14d2a500d5daadc3354c8ccd2bf1619bc0782e9 Mon Sep 17 00:00:00 2001 From: Philipp Hancke Date: Tue, 30 Jun 2020 16:35:53 +0200 Subject: [PATCH] Build: Disable the iLBC audio codec by default webrtc.org no longer builds with the iLBC audio codec by default by setting rtc_include_ilbc to false in webrtc.gni. You can read more about iLBC at https://webrtc.github.io/webrtc-org/license/ilbc-freeware/ iLBC is not a mandatory-to-implement codec in WebRTC (and we are pretty sure it was never enabled in Chrome). This affects only native applications which can change the build flag again. BUG=webrtc:11740 Change-Id: I513658a950100a90346370c9210806aee0f34607 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/178395 Commit-Queue: Philipp Hancke Reviewed-by: Karl Wiberg Cr-Commit-Position: refs/heads/master@{#31599} --- webrtc.gni | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc.gni b/webrtc.gni index 7cf81e6af4..eaa545122c 100644 --- a/webrtc.gni +++ b/webrtc.gni @@ -65,7 +65,7 @@ declare_args() { rtc_builtin_ssl_root_certificates = true # Include the iLBC audio codec? - rtc_include_ilbc = true + rtc_include_ilbc = false # Disable this to avoid building the Opus audio codec. rtc_include_opus = true