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

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

Issue 2669733002: Add 120ms frame ability to ANA (Closed)
Patch Set: Response to comments. Created 3 years, 11 months 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 59c166db995a61276b26d8c401061e35d0992777..79432e017954c2ea56deb4af97acc7eadae7fa42 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -857,6 +857,12 @@ rtc_static_library("webrtc_opus") {
defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=0" ]
}
+ if (rtc_opus_support_120ms_ptime) {
minyue-webrtc 2017/02/02 10:42:08 rebase needed here
michaelt 2017/02/02 11:17:18 Done.
+ defines += [ "WEBRTC_OPUS_SUPPORT_120MS_PTIME=1" ]
+ } else {
+ defines += [ "WEBRTC_OPUS_SUPPORT_120MS_PTIME=0" ]
+ }
+
if (rtc_build_opus) {
public_deps += [ rtc_opus_dir ]
} else if (build_with_mozilla) {

Powered by Google App Engine
This is Rietveld 408576698