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

Side by Side 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, 3 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'variables': { 10 'variables': {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'echo_cancellation_impl.h', 78 'echo_cancellation_impl.h',
79 'echo_control_mobile_impl.cc', 79 'echo_control_mobile_impl.cc',
80 'echo_control_mobile_impl.h', 80 'echo_control_mobile_impl.h',
81 'gain_control_for_experimental_agc.cc', 81 'gain_control_for_experimental_agc.cc',
82 'gain_control_for_experimental_agc.h', 82 'gain_control_for_experimental_agc.h',
83 'gain_control_impl.cc', 83 'gain_control_impl.cc',
84 'gain_control_impl.h', 84 'gain_control_impl.h',
85 'high_pass_filter_impl.cc', 85 'high_pass_filter_impl.cc',
86 'high_pass_filter_impl.h', 86 'high_pass_filter_impl.h',
87 'include/audio_processing.h', 87 'include/audio_processing.h',
88 'intelligibility/intelligibility_enhancer.cc',
89 'intelligibility/intelligibility_enhancer.h',
90 'intelligibility/intelligibility_utils.cc',
91 'intelligibility/intelligibility_utils.h',
92 'level_controller/biquad_filter.cc', 88 'level_controller/biquad_filter.cc',
93 'level_controller/biquad_filter.h', 89 'level_controller/biquad_filter.h',
94 'level_controller/down_sampler.cc', 90 'level_controller/down_sampler.cc',
95 'level_controller/down_sampler.h', 91 'level_controller/down_sampler.h',
96 'level_controller/gain_applier.cc', 92 'level_controller/gain_applier.cc',
97 'level_controller/gain_applier.h', 93 'level_controller/gain_applier.h',
98 'level_controller/gain_selector.cc', 94 'level_controller/gain_selector.cc',
99 'level_controller/gain_selector.h', 95 'level_controller/gain_selector.h',
100 'level_controller/lc_constants.h', 96 'level_controller/lc_constants.h',
101 'level_controller/level_controller.cc', 97 'level_controller/level_controller.cc',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 ['aec_untrusted_delay_for_testing==1', { 173 ['aec_untrusted_delay_for_testing==1', {
178 'defines': ['WEBRTC_UNTRUSTED_DELAY',], 174 'defines': ['WEBRTC_UNTRUSTED_DELAY',],
179 }], 175 }],
180 ['agc_debug_dump==1', { 176 ['agc_debug_dump==1', {
181 'defines': ['WEBRTC_AGC_DEBUG_DUMP',], 177 'defines': ['WEBRTC_AGC_DEBUG_DUMP',],
182 }], 178 }],
183 ['enable_protobuf==1', { 179 ['enable_protobuf==1', {
184 'dependencies': ['audioproc_debug_proto'], 180 'dependencies': ['audioproc_debug_proto'],
185 'defines': ['WEBRTC_AUDIOPROC_DEBUG_DUMP'], 181 'defines': ['WEBRTC_AUDIOPROC_DEBUG_DUMP'],
186 }], 182 }],
183 ['enable_intelligibility_enhancer==1', {
184 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=1',],
185 'sources': [
186 'intelligibility/intelligibility_enhancer.cc',
187 'intelligibility/intelligibility_enhancer.h',
188 'intelligibility/intelligibility_utils.cc',
189 'intelligibility/intelligibility_utils.h',
190 ],
191 }, {
192 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=0',],
193 }],
187 ['prefer_fixed_point==1', { 194 ['prefer_fixed_point==1', {
188 'defines': ['WEBRTC_NS_FIXED'], 195 'defines': ['WEBRTC_NS_FIXED'],
189 'sources': [ 196 'sources': [
190 'ns/noise_suppression_x.h', 197 'ns/noise_suppression_x.h',
191 'ns/noise_suppression_x.c', 198 'ns/noise_suppression_x.c',
192 'ns/nsx_core.c', 199 'ns/nsx_core.c',
193 'ns/nsx_core.h', 200 'ns/nsx_core.h',
194 'ns/nsx_defines.h', 201 'ns/nsx_defines.h',
195 ], 202 ],
196 'conditions': [ 203 'conditions': [
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 'defines': ['WEBRTC_AEC_DEBUG_DUMP=1',], 312 'defines': ['WEBRTC_AEC_DEBUG_DUMP=1',],
306 }], 313 }],
307 ['aec_debug_dump==0', { 314 ['aec_debug_dump==0', {
308 'defines': ['WEBRTC_AEC_DEBUG_DUMP=0',], 315 'defines': ['WEBRTC_AEC_DEBUG_DUMP=0',],
309 }], 316 }],
310 ], 317 ],
311 }], 318 }],
312 }], 319 }],
313 ], 320 ],
314 } 321 }
OLDNEW
« 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