Index: webrtc/modules/audio_processing/audio_processing_impl.cc |
diff --git a/webrtc/modules/audio_processing/audio_processing_impl.cc b/webrtc/modules/audio_processing/audio_processing_impl.cc |
index aed63412dfeed8c5a4c01c5177583c40ceddbc44..3813a9aca84658dd18ae32427cdbd578d6712561 100644 |
--- a/webrtc/modules/audio_processing/audio_processing_impl.cc |
+++ b/webrtc/modules/audio_processing/audio_processing_impl.cc |
@@ -178,7 +178,11 @@ AudioProcessingImpl::AudioProcessingImpl(const Config& config, |
use_new_agc_(config.Get<ExperimentalAgc>().enabled), |
#endif |
agc_startup_min_volume_(config.Get<ExperimentalAgc>().startup_min_volume), |
+#if defined(WEBRTC_ANDROID) || defined(WEBRTC_IOS) |
aluebs-webrtc
2015/06/24 17:25:43
Do we want to put this in the same ifdef than the
Andrew MacDonald
2015/06/24 17:51:47
We could, but it would constrain the order of memb
aluebs-webrtc
2015/06/24 17:54:00
I am ok with leaving it this way, but do whatever
|
+ transient_suppressor_enabled_(false), |
+#else |
transient_suppressor_enabled_(config.Get<ExperimentalNs>().enabled), |
+#endif |
beamformer_enabled_(config.Get<Beamforming>().enabled), |
beamformer_(beamformer), |
array_geometry_(config.Get<Beamforming>().array_geometry), |