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

Side by Side Diff: webrtc/modules/audio_processing/audio_processing.gypi

Issue 2405403003: Add empty residual echo detector. (Closed)
Patch Set: Removed forward declaration. Created 4 years, 2 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 'beamformer/covariance_matrix_generator.cc', 66 'beamformer/covariance_matrix_generator.cc',
67 'beamformer/covariance_matrix_generator.h', 67 'beamformer/covariance_matrix_generator.h',
68 'beamformer/matrix.h', 68 'beamformer/matrix.h',
69 'beamformer/nonlinear_beamformer.cc', 69 'beamformer/nonlinear_beamformer.cc',
70 'beamformer/nonlinear_beamformer.h', 70 'beamformer/nonlinear_beamformer.h',
71 'common.h', 71 'common.h',
72 'echo_cancellation_impl.cc', 72 'echo_cancellation_impl.cc',
73 'echo_cancellation_impl.h', 73 'echo_cancellation_impl.h',
74 'echo_control_mobile_impl.cc', 74 'echo_control_mobile_impl.cc',
75 'echo_control_mobile_impl.h', 75 'echo_control_mobile_impl.h',
76 'echo_detector/echo_detector.cc',
77 'echo_detector/echo_detector.h',
76 'gain_control_for_experimental_agc.cc', 78 'gain_control_for_experimental_agc.cc',
77 'gain_control_for_experimental_agc.h', 79 'gain_control_for_experimental_agc.h',
78 'gain_control_impl.cc', 80 'gain_control_impl.cc',
79 'gain_control_impl.h', 81 'gain_control_impl.h',
80 'high_pass_filter_impl.cc', 82 'high_pass_filter_impl.cc',
81 'high_pass_filter_impl.h', 83 'high_pass_filter_impl.h',
82 'include/audio_processing.cc', 84 'include/audio_processing.cc',
83 'include/audio_processing.h', 85 'include/audio_processing.h',
84 'include/config.cc', 86 'include/config.cc',
85 'include/config.h', 87 'include/config.h',
(...skipping 18 matching lines...) Expand all
104 'level_controller/saturating_gain_estimator.h', 106 'level_controller/saturating_gain_estimator.h',
105 'level_controller/signal_classifier.cc', 107 'level_controller/signal_classifier.cc',
106 'level_controller/signal_classifier.h', 108 'level_controller/signal_classifier.h',
107 'level_estimator_impl.cc', 109 'level_estimator_impl.cc',
108 'level_estimator_impl.h', 110 'level_estimator_impl.h',
109 'logging/apm_data_dumper.cc', 111 'logging/apm_data_dumper.cc',
110 'logging/apm_data_dumper.h', 112 'logging/apm_data_dumper.h',
111 'noise_suppression_impl.cc', 113 'noise_suppression_impl.cc',
112 'noise_suppression_impl.h', 114 'noise_suppression_impl.h',
113 'render_queue_item_verifier.h', 115 'render_queue_item_verifier.h',
116 'residual_echo_detector.cc',
117 'residual_echo_detector.h',
114 'rms_level.cc', 118 'rms_level.cc',
115 'rms_level.h', 119 'rms_level.h',
116 'splitting_filter.cc', 120 'splitting_filter.cc',
117 'splitting_filter.h', 121 'splitting_filter.h',
118 'three_band_filter_bank.cc', 122 'three_band_filter_bank.cc',
119 'three_band_filter_bank.h', 123 'three_band_filter_bank.h',
120 'transient/common.h', 124 'transient/common.h',
121 'transient/daubechies_8_wavelet_coeffs.h', 125 'transient/daubechies_8_wavelet_coeffs.h',
122 'transient/dyadic_decimator.h', 126 'transient/dyadic_decimator.h',
123 'transient/moving_moments.cc', 127 'transient/moving_moments.cc',
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 'defines': ['WEBRTC_APM_DEBUG_DUMP=1',], 319 'defines': ['WEBRTC_APM_DEBUG_DUMP=1',],
316 }], 320 }],
317 ['apm_debug_dump==0', { 321 ['apm_debug_dump==0', {
318 'defines': ['WEBRTC_APM_DEBUG_DUMP=0',], 322 'defines': ['WEBRTC_APM_DEBUG_DUMP=0',],
319 }], 323 }],
320 ], 324 ],
321 }], 325 }],
322 }], 326 }],
323 ], 327 ],
324 } 328 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698