summaryrefslogtreecommitdiff
path: root/engine_configurations.h
diff options
context:
space:
mode:
authorandrew@webrtc.org <andrew@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-06-19 17:03:47 +0000
committerandrew@webrtc.org <andrew@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-06-19 17:03:47 +0000
commitf47d0f86cab3e8f1df029cfadf549e986cbff20e (patch)
treeb310fa8f3ceb52e1b951808d0f673cb302bb19ac /engine_configurations.h
parent75336597160bd0f29441617ccb651afa5c98b520 (diff)
downloadwebrtc-f47d0f86cab3e8f1df029cfadf549e986cbff20e.tar.gz
Remove unneeded *_NOT_SUPPORTED from VoEAudioProcessing.
* Remove ANDROID_NOT_SUPPORTED from a bunch of echo metrics calls where it actually is supported. * No error to call GetTypingDetectionStatus. * Consolidate typing detection disablement to reduce boilerplate. R=niklas.enbom@webrtc.org, xians@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1683004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4247 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'engine_configurations.h')
-rw-r--r--engine_configurations.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/engine_configurations.h b/engine_configurations.h
index 01fa3644..22b87e85 100644
--- a/engine_configurations.h
+++ b/engine_configurations.h
@@ -11,6 +11,8 @@
#ifndef WEBRTC_ENGINE_CONFIGURATIONS_H_
#define WEBRTC_ENGINE_CONFIGURATIONS_H_
+#include "webrtc/typedefs.h"
+
// ============================================================================
// Voice and Video
// ============================================================================
@@ -61,7 +63,8 @@
#define WEBRTC_VOICE_ENGINE_NR // Near-end NS
#define WEBRTC_VOE_EXTERNAL_REC_AND_PLAYOUT
-#ifndef WEBRTC_CHROMIUM_BUILD
+#if !defined(WEBRTC_ANDROID) && !defined(WEBRTC_IOS) && \
+ !defined(WEBRTC_CHROMIUM_BUILD)
#define WEBRTC_VOICE_ENGINE_TYPING_DETECTION // Typing detection
#endif