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

Unified Diff: webrtc/modules/audio_processing/audio_processing.gypi

Issue 2272423003: Deactivated the intelligibility enhancement functionality by default (Closed)
Patch Set: Changed name of build file flags Created 4 years, 4 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
« no previous file with comments | « webrtc/modules/audio_processing/BUILD.gn ('k') | webrtc/modules/audio_processing/audio_processing_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/audio_processing.gypi
diff --git a/webrtc/modules/audio_processing/audio_processing.gypi b/webrtc/modules/audio_processing/audio_processing.gypi
index 3cfc727020bbd4796135f13a5d15c204030f14bb..14e1b66862b75ad655d5effb4453e054aa20e4ac 100644
--- a/webrtc/modules/audio_processing/audio_processing.gypi
+++ b/webrtc/modules/audio_processing/audio_processing.gypi
@@ -85,10 +85,6 @@
'high_pass_filter_impl.cc',
'high_pass_filter_impl.h',
'include/audio_processing.h',
- 'intelligibility/intelligibility_enhancer.cc',
- 'intelligibility/intelligibility_enhancer.h',
- 'intelligibility/intelligibility_utils.cc',
- 'intelligibility/intelligibility_utils.h',
'level_controller/biquad_filter.cc',
'level_controller/biquad_filter.h',
'level_controller/down_sampler.cc',
@@ -184,6 +180,17 @@
'dependencies': ['audioproc_debug_proto'],
'defines': ['WEBRTC_AUDIOPROC_DEBUG_DUMP'],
}],
+ ['enable_intelligibility_enhancer==1', {
+ 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=1',],
+ 'sources': [
+ 'intelligibility/intelligibility_enhancer.cc',
+ 'intelligibility/intelligibility_enhancer.h',
+ 'intelligibility/intelligibility_utils.cc',
+ 'intelligibility/intelligibility_utils.h',
+ ],
+ }, {
+ 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=0',],
+ }],
['prefer_fixed_point==1', {
'defines': ['WEBRTC_NS_FIXED'],
'sources': [
« no previous file with comments | « webrtc/modules/audio_processing/BUILD.gn ('k') | webrtc/modules/audio_processing/audio_processing_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698