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

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

Issue 1272403003: Replaced the wav file dumping functionality in aec_core.c with the newly added corresponding macros (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Updates according to comments. Also added BUILD.gn that were previously missing from the changeset Created 5 years, 4 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'gain_control_impl.h', 80 'gain_control_impl.h',
81 'high_pass_filter_impl.cc', 81 'high_pass_filter_impl.cc',
82 'high_pass_filter_impl.h', 82 'high_pass_filter_impl.h',
83 'include/audio_processing.h', 83 'include/audio_processing.h',
84 'intelligibility/intelligibility_enhancer.cc', 84 'intelligibility/intelligibility_enhancer.cc',
85 'intelligibility/intelligibility_enhancer.h', 85 'intelligibility/intelligibility_enhancer.h',
86 'intelligibility/intelligibility_utils.cc', 86 'intelligibility/intelligibility_utils.cc',
87 'intelligibility/intelligibility_utils.h', 87 'intelligibility/intelligibility_utils.h',
88 'level_estimator_impl.cc', 88 'level_estimator_impl.cc',
89 'level_estimator_impl.h', 89 'level_estimator_impl.h',
90 'logging/aec_logging.h',
91 'logging/aec_logging_file_handling.cc',
92 'logging/aec_logging_file_handling.h',
90 'noise_suppression_impl.cc', 93 'noise_suppression_impl.cc',
91 'noise_suppression_impl.h', 94 'noise_suppression_impl.h',
92 'processing_component.cc', 95 'processing_component.cc',
93 'processing_component.h', 96 'processing_component.h',
94 'rms_level.cc', 97 'rms_level.cc',
95 'rms_level.h', 98 'rms_level.h',
96 'splitting_filter.cc', 99 'splitting_filter.cc',
97 'splitting_filter.h', 100 'splitting_filter.h',
98 'three_band_filter_bank.cc', 101 'three_band_filter_bank.cc',
99 'three_band_filter_bank.h', 102 'three_band_filter_bank.h',
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 'sources': [ 265 'sources': [
263 'aec/aec_core_neon.c', 266 'aec/aec_core_neon.c',
264 'aec/aec_rdft_neon.c', 267 'aec/aec_rdft_neon.c',
265 'aecm/aecm_core_neon.c', 268 'aecm/aecm_core_neon.c',
266 'ns/nsx_core_neon.c', 269 'ns/nsx_core_neon.c',
267 ], 270 ],
268 }], 271 }],
269 }], 272 }],
270 ], 273 ],
271 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698