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

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

Issue 1678813002: Moved the GainControlForNewAGC class to a separate file. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Changed the locking test to match how the gain control is used in practice and to comply with the n… Created 4 years, 10 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'beamformer/covariance_matrix_generator.cc', 71 'beamformer/covariance_matrix_generator.cc',
72 'beamformer/covariance_matrix_generator.h', 72 'beamformer/covariance_matrix_generator.h',
73 'beamformer/matrix.h', 73 'beamformer/matrix.h',
74 'beamformer/nonlinear_beamformer.cc', 74 'beamformer/nonlinear_beamformer.cc',
75 'beamformer/nonlinear_beamformer.h', 75 'beamformer/nonlinear_beamformer.h',
76 'common.h', 76 'common.h',
77 'echo_cancellation_impl.cc', 77 'echo_cancellation_impl.cc',
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',
82 'gain_control_for_experimental_agc.h',
81 'gain_control_impl.cc', 83 'gain_control_impl.cc',
82 'gain_control_impl.h', 84 'gain_control_impl.h',
83 'high_pass_filter_impl.cc', 85 'high_pass_filter_impl.cc',
84 'high_pass_filter_impl.h', 86 'high_pass_filter_impl.h',
85 'include/audio_processing.h', 87 'include/audio_processing.h',
86 'intelligibility/intelligibility_enhancer.cc', 88 'intelligibility/intelligibility_enhancer.cc',
87 'intelligibility/intelligibility_enhancer.h', 89 'intelligibility/intelligibility_enhancer.h',
88 'intelligibility/intelligibility_utils.cc', 90 'intelligibility/intelligibility_utils.cc',
89 'intelligibility/intelligibility_utils.h', 91 'intelligibility/intelligibility_utils.h',
90 'level_estimator_impl.cc', 92 'level_estimator_impl.cc',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 'sources': [ 269 'sources': [
268 'aec/aec_core_neon.c', 270 'aec/aec_core_neon.c',
269 'aec/aec_rdft_neon.c', 271 'aec/aec_rdft_neon.c',
270 'aecm/aecm_core_neon.c', 272 'aecm/aecm_core_neon.c',
271 'ns/nsx_core_neon.c', 273 'ns/nsx_core_neon.c',
272 ], 274 ],
273 }], 275 }],
274 }], 276 }],
275 ], 277 ],
276 } 278 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698