Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(752)

Unified Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 2503443002: Let Opus increase complexity for low bitrates (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/BUILD.gn
diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn
index f6188a0425742dcbbb67b60190aebcc6f135dc14..0e78abfea65ef47a1985a0223e05bccbd5c6e376 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -711,10 +711,17 @@ rtc_static_library("webrtc_opus") {
"../../base:rtc_base_approved",
]
+ defines = []
+
if (rtc_build_opus) {
public_deps = [
rtc_opus_dir,
]
+ if (rtc_opus_variable_complexity) {
+ defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ]
+ } else {
+ defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=0" ]
+ }
} else if (build_with_mozilla) {
include_dirs = [ getenv("DIST") + "/include/opus" ]
}

Powered by Google App Engine
This is Rietveld 408576698