aboutsummaryrefslogtreecommitdiff
path: root/webrtc/modules/audio_processing/audio_processing.gypi
diff options
context:
space:
mode:
authoraluebs <aluebs@webrtc.org>2015-06-25 12:28:48 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-25 19:28:55 +0000
commitecf6b81644af9823dbff5c24a3d5b9bb596c0d5b (patch)
tree819c574be7e782361ed0c2e08dad47e958178432 /webrtc/modules/audio_processing/audio_processing.gypi
parent0ea42d319e2a18785f5de5fe8d52e0a7a5fd1448 (diff)
downloadwebrtc-ecf6b81644af9823dbff5c24a3d5b9bb596c0d5b.tar.gz
Pull the Voice Activity Detector out from the AGC
This change generates bit-exact values when running through audioproc_f than before. This change was originally uploaded here: * https://codereview.webrtc.org/1181933002/ * https://codereview.webrtc.org/1177043017/ And reverted because of an ASAN problem in Chrome here: * https://codereview.webrtc.org/1192863006/ * https://codereview.webrtc.org/1194963003/ TBR=andrew@webrtc.org Review URL: https://codereview.webrtc.org/1212543002 Cr-Commit-Position: refs/heads/master@{#9505}
Diffstat (limited to 'webrtc/modules/audio_processing/audio_processing.gypi')
-rw-r--r--webrtc/modules/audio_processing/audio_processing.gypi38
1 files changed, 20 insertions, 18 deletions
diff --git a/webrtc/modules/audio_processing/audio_processing.gypi b/webrtc/modules/audio_processing/audio_processing.gypi
index f0d56691c0..a9c3ebbd96 100644
--- a/webrtc/modules/audio_processing/audio_processing.gypi
+++ b/webrtc/modules/audio_processing/audio_processing.gypi
@@ -48,17 +48,9 @@
'aecm/include/echo_control_mobile.h',
'agc/agc.cc',
'agc/agc.h',
- 'agc/agc_audio_proc.cc',
- 'agc/agc_audio_proc.h',
- 'agc/agc_audio_proc_internal.h',
'agc/agc_manager_direct.cc',
'agc/agc_manager_direct.h',
- 'agc/circular_buffer.cc',
- 'agc/circular_buffer.h',
- 'agc/common.h',
'agc/gain_map_internal.h',
- 'agc/gmm.cc',
- 'agc/gmm.h',
'agc/histogram.cc',
'agc/histogram.h',
'agc/legacy/analog_agc.c',
@@ -66,18 +58,8 @@
'agc/legacy/digital_agc.c',
'agc/legacy/digital_agc.h',
'agc/legacy/gain_control.h',
- 'agc/noise_gmm_tables.h',
- 'agc/pitch_based_vad.cc',
- 'agc/pitch_based_vad.h',
- 'agc/pitch_internal.cc',
- 'agc/pitch_internal.h',
- 'agc/pole_zero_filter.cc',
- 'agc/pole_zero_filter.h',
- 'agc/standalone_vad.cc',
- 'agc/standalone_vad.h',
'agc/utility.cc',
'agc/utility.h',
- 'agc/voice_gmm_tables.h',
'audio_buffer.cc',
'audio_buffer.h',
'audio_processing_impl.cc',
@@ -135,6 +117,26 @@
'utility/delay_estimator_internal.h',
'utility/delay_estimator_wrapper.c',
'utility/delay_estimator_wrapper.h',
+ 'vad/common.h',
+ 'vad/gmm.cc',
+ 'vad/gmm.h',
+ 'vad/noise_gmm_tables.h',
+ 'vad/pitch_based_vad.cc',
+ 'vad/pitch_based_vad.h',
+ 'vad/pitch_internal.cc',
+ 'vad/pitch_internal.h',
+ 'vad/pole_zero_filter.cc',
+ 'vad/pole_zero_filter.h',
+ 'vad/standalone_vad.cc',
+ 'vad/standalone_vad.h',
+ 'vad/vad_audio_proc.cc',
+ 'vad/vad_audio_proc.h',
+ 'vad/vad_audio_proc_internal.h',
+ 'vad/vad_circular_buffer.cc',
+ 'vad/vad_circular_buffer.h',
+ 'vad/voice_activity_detector.cc',
+ 'vad/voice_activity_detector.h',
+ 'vad/voice_gmm_tables.h',
'voice_detection_impl.cc',
'voice_detection_impl.h',
],