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

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

Issue 1212543002: Pull the Voice Activity Detector out from the AGC (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 5 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 30 matching lines...) Expand all
41 'aec/aec_resampler.h', 41 'aec/aec_resampler.h',
42 'aec/echo_cancellation.c', 42 'aec/echo_cancellation.c',
43 'aec/echo_cancellation_internal.h', 43 'aec/echo_cancellation_internal.h',
44 'aec/include/echo_cancellation.h', 44 'aec/include/echo_cancellation.h',
45 'aecm/aecm_core.c', 45 'aecm/aecm_core.c',
46 'aecm/aecm_core.h', 46 'aecm/aecm_core.h',
47 'aecm/echo_control_mobile.c', 47 'aecm/echo_control_mobile.c',
48 'aecm/include/echo_control_mobile.h', 48 'aecm/include/echo_control_mobile.h',
49 'agc/agc.cc', 49 'agc/agc.cc',
50 'agc/agc.h', 50 'agc/agc.h',
51 'agc/agc_audio_proc.cc',
52 'agc/agc_audio_proc.h',
53 'agc/agc_audio_proc_internal.h',
54 'agc/agc_manager_direct.cc', 51 'agc/agc_manager_direct.cc',
55 'agc/agc_manager_direct.h', 52 'agc/agc_manager_direct.h',
56 'agc/circular_buffer.cc',
57 'agc/circular_buffer.h',
58 'agc/common.h',
59 'agc/gain_map_internal.h', 53 'agc/gain_map_internal.h',
60 'agc/gmm.cc',
61 'agc/gmm.h',
62 'agc/histogram.cc', 54 'agc/histogram.cc',
63 'agc/histogram.h', 55 'agc/histogram.h',
64 'agc/legacy/analog_agc.c', 56 'agc/legacy/analog_agc.c',
65 'agc/legacy/analog_agc.h', 57 'agc/legacy/analog_agc.h',
66 'agc/legacy/digital_agc.c', 58 'agc/legacy/digital_agc.c',
67 'agc/legacy/digital_agc.h', 59 'agc/legacy/digital_agc.h',
68 'agc/legacy/gain_control.h', 60 'agc/legacy/gain_control.h',
69 'agc/noise_gmm_tables.h',
70 'agc/pitch_based_vad.cc',
71 'agc/pitch_based_vad.h',
72 'agc/pitch_internal.cc',
73 'agc/pitch_internal.h',
74 'agc/pole_zero_filter.cc',
75 'agc/pole_zero_filter.h',
76 'agc/standalone_vad.cc',
77 'agc/standalone_vad.h',
78 'agc/utility.cc', 61 'agc/utility.cc',
79 'agc/utility.h', 62 'agc/utility.h',
80 'agc/voice_gmm_tables.h',
81 'audio_buffer.cc', 63 'audio_buffer.cc',
82 'audio_buffer.h', 64 'audio_buffer.h',
83 'audio_processing_impl.cc', 65 'audio_processing_impl.cc',
84 'audio_processing_impl.h', 66 'audio_processing_impl.h',
85 'beamformer/beamformer.h', 67 'beamformer/beamformer.h',
86 'beamformer/complex_matrix.h', 68 'beamformer/complex_matrix.h',
87 'beamformer/covariance_matrix_generator.cc', 69 'beamformer/covariance_matrix_generator.cc',
88 'beamformer/covariance_matrix_generator.h', 70 'beamformer/covariance_matrix_generator.h',
89 'beamformer/matrix.h', 71 'beamformer/matrix.h',
90 'beamformer/nonlinear_beamformer.cc', 72 'beamformer/nonlinear_beamformer.cc',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 'transient/wpd_node.h', 106 'transient/wpd_node.h',
125 'transient/wpd_tree.cc', 107 'transient/wpd_tree.cc',
126 'transient/wpd_tree.h', 108 'transient/wpd_tree.h',
127 'typing_detection.cc', 109 'typing_detection.cc',
128 'typing_detection.h', 110 'typing_detection.h',
129 'utility/delay_estimator.c', 111 'utility/delay_estimator.c',
130 'utility/delay_estimator.h', 112 'utility/delay_estimator.h',
131 'utility/delay_estimator_internal.h', 113 'utility/delay_estimator_internal.h',
132 'utility/delay_estimator_wrapper.c', 114 'utility/delay_estimator_wrapper.c',
133 'utility/delay_estimator_wrapper.h', 115 'utility/delay_estimator_wrapper.h',
116 'vad/common.h',
117 'vad/gmm.cc',
118 'vad/gmm.h',
119 'vad/noise_gmm_tables.h',
120 'vad/pitch_based_vad.cc',
121 'vad/pitch_based_vad.h',
122 'vad/pitch_internal.cc',
123 'vad/pitch_internal.h',
124 'vad/pole_zero_filter.cc',
125 'vad/pole_zero_filter.h',
126 'vad/standalone_vad.cc',
127 'vad/standalone_vad.h',
128 'vad/vad_audio_proc.cc',
129 'vad/vad_audio_proc.h',
130 'vad/vad_audio_proc_internal.h',
131 'vad/vad_circular_buffer.cc',
132 'vad/vad_circular_buffer.h',
133 'vad/voice_activity_detector.cc',
134 'vad/voice_activity_detector.h',
135 'vad/voice_gmm_tables.h',
134 'voice_detection_impl.cc', 136 'voice_detection_impl.cc',
135 'voice_detection_impl.h', 137 'voice_detection_impl.h',
136 ], 138 ],
137 'conditions': [ 139 'conditions': [
138 ['aec_debug_dump==1', { 140 ['aec_debug_dump==1', {
139 'defines': ['WEBRTC_AEC_DEBUG_DUMP',], 141 'defines': ['WEBRTC_AEC_DEBUG_DUMP',],
140 }], 142 }],
141 ['aec_untrusted_delay_for_testing==1', { 143 ['aec_untrusted_delay_for_testing==1', {
142 'defines': ['WEBRTC_UNTRUSTED_DELAY',], 144 'defines': ['WEBRTC_UNTRUSTED_DELAY',],
143 }], 145 }],
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 'cflags!': [ 267 'cflags!': [
266 '-flto', 268 '-flto',
267 '-ffat-lto-objects', 269 '-ffat-lto-objects',
268 ], 270 ],
269 }], 271 }],
270 ], 272 ],
271 }], 273 }],
272 }], 274 }],
273 ], 275 ],
274 } 276 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698