OLD | NEW |
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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', | 88 'intelligibility/intelligibility_enhancer.cc', |
89 'intelligibility/intelligibility_enhancer.h', | 89 'intelligibility/intelligibility_enhancer.h', |
90 'intelligibility/intelligibility_utils.cc', | 90 'intelligibility/intelligibility_utils.cc', |
91 'intelligibility/intelligibility_utils.h', | 91 'intelligibility/intelligibility_utils.h', |
| 92 'level_controller/biquad_filter.cc', |
| 93 'level_controller/biquad_filter.h', |
| 94 'level_controller/down_sampler.cc', |
| 95 'level_controller/down_sampler.h', |
| 96 'level_controller/gain_applier.cc', |
| 97 'level_controller/gain_applier.h', |
| 98 'level_controller/gain_selector.cc', |
| 99 'level_controller/gain_selector.h', |
| 100 'level_controller/lc_constants.h', |
| 101 'level_controller/level_controller.cc', |
| 102 'level_controller/level_controller.h', |
| 103 'level_controller/noise_spectrum_estimator.cc', |
| 104 'level_controller/noise_spectrum_estimator.h', |
| 105 'level_controller/noise_level_estimator.cc', |
| 106 'level_controller/noise_level_estimator.h', |
| 107 'level_controller/peak_level_estimator.cc', |
| 108 'level_controller/peak_level_estimator.h', |
| 109 'level_controller/saturating_gain_estimator.cc', |
| 110 'level_controller/saturating_gain_estimator.h', |
| 111 'level_controller/signal_classifier.cc', |
| 112 'level_controller/signal_classifier.h', |
92 'level_estimator_impl.cc', | 113 'level_estimator_impl.cc', |
93 'level_estimator_impl.h', | 114 'level_estimator_impl.h', |
94 'logging/apm_data_dumper.cc', | 115 'logging/apm_data_dumper.cc', |
95 'logging/apm_data_dumper.h', | 116 'logging/apm_data_dumper.h', |
96 'noise_suppression_impl.cc', | 117 'noise_suppression_impl.cc', |
97 'noise_suppression_impl.h', | 118 'noise_suppression_impl.h', |
98 'render_queue_item_verifier.h', | 119 'render_queue_item_verifier.h', |
99 'rms_level.cc', | 120 'rms_level.cc', |
100 'rms_level.h', | 121 'rms_level.h', |
101 'splitting_filter.cc', | 122 'splitting_filter.cc', |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 'defines': ['WEBRTC_AEC_DEBUG_DUMP=1',], | 305 'defines': ['WEBRTC_AEC_DEBUG_DUMP=1',], |
285 }], | 306 }], |
286 ['aec_debug_dump==0', { | 307 ['aec_debug_dump==0', { |
287 'defines': ['WEBRTC_AEC_DEBUG_DUMP=0',], | 308 'defines': ['WEBRTC_AEC_DEBUG_DUMP=0',], |
288 }], | 309 }], |
289 ], | 310 ], |
290 }], | 311 }], |
291 }], | 312 }], |
292 ], | 313 ], |
293 } | 314 } |
OLD | NEW |