aboutsummaryrefslogtreecommitdiff
path: root/webrtc/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
commit0851df8d60b43e1c7a212f233dc378cb2585476b (patch)
tree4afd56224b750a4a93b17738d0f08b4040adba36 /webrtc/engine_configurations.h
parent8ccb9f9716f306dd1ec284b4f61f0b6c82c08c3c (diff)
downloadwebrtc-0851df8d60b43e1c7a212f233dc378cb2585476b.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@4247 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'webrtc/engine_configurations.h')
-rw-r--r--webrtc/engine_configurations.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/webrtc/engine_configurations.h b/webrtc/engine_configurations.h
index 01fa36443b..22b87e8509 100644
--- a/webrtc/engine_configurations.h
+++ b/webrtc/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