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

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

Issue 2419563003: Add algorithm for Residual Echo Detector. (Closed)
Patch Set: Per's comments. 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/circular_buffer.cc',
77 'echo_detector/circular_buffer.h',
76 'echo_detector/echo_detector.cc', 78 'echo_detector/echo_detector.cc',
77 'echo_detector/echo_detector.h', 79 'echo_detector/echo_detector.h',
80 'echo_detector/mean_variance_estimator.cc',
81 'echo_detector/mean_variance_estimator.h',
82 'echo_detector/normalized_covariance_estimator.cc',
83 'echo_detector/normalized_covariance_estimator.h',
78 'gain_control_for_experimental_agc.cc', 84 'gain_control_for_experimental_agc.cc',
79 'gain_control_for_experimental_agc.h', 85 'gain_control_for_experimental_agc.h',
80 'gain_control_impl.cc', 86 'gain_control_impl.cc',
81 'gain_control_impl.h', 87 'gain_control_impl.h',
82 'high_pass_filter_impl.cc', 88 'high_pass_filter_impl.cc',
83 'high_pass_filter_impl.h', 89 'high_pass_filter_impl.h',
84 'include/audio_processing.cc', 90 'include/audio_processing.cc',
85 'include/audio_processing.h', 91 'include/audio_processing.h',
86 'include/config.cc', 92 'include/config.cc',
87 'include/config.h', 93 'include/config.h',
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 'defines': ['WEBRTC_APM_DEBUG_DUMP=1',], 325 'defines': ['WEBRTC_APM_DEBUG_DUMP=1',],
320 }], 326 }],
321 ['apm_debug_dump==0', { 327 ['apm_debug_dump==0', {
322 'defines': ['WEBRTC_APM_DEBUG_DUMP=0',], 328 'defines': ['WEBRTC_APM_DEBUG_DUMP=0',],
323 }], 329 }],
324 ], 330 ],
325 }], 331 }],
326 }], 332 }],
327 ], 333 ],
328 } 334 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698