2011-07-07 08:21:25 +00:00
|
|
|
/*
|
2012-02-02 08:59:11 +00:00
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-10-07 07:07:28 +02:00
|
|
|
#ifndef WEBRTC_VOICE_ENGINE_CONFIGURATIONS_H_
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_CONFIGURATIONS_H_
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-06-19 17:03:47 +00:00
|
|
|
#include "webrtc/typedefs.h"
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
// ============================================================================
|
|
|
|
|
// VoiceEngine
|
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// Settings for VoiceEngine
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_AGC // Near-end AGC
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_ECHO // Near-end AEC
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_NR // Near-end NS
|
|
|
|
|
|
2013-09-17 18:09:20 +00:00
|
|
|
#if !defined(WEBRTC_ANDROID) && !defined(WEBRTC_IOS)
|
2011-12-08 16:45:46 +00:00
|
|
|
#define WEBRTC_VOICE_ENGINE_TYPING_DETECTION // Typing detection
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
// VoiceEngine sub-APIs
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_AUDIO_PROCESSING_API
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_CODEC_API
|
2012-03-15 14:40:00 +00:00
|
|
|
#define WEBRTC_VOICE_ENGINE_EXTERNAL_MEDIA_API
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_FILE_API
|
2011-07-07 08:21:25 +00:00
|
|
|
#define WEBRTC_VOICE_ENGINE_HARDWARE_API
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_NETEQ_STATS_API
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_RTP_RTCP_API
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_VIDEO_SYNC_API
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_VOLUME_CONTROL_API
|
|
|
|
|
|
2016-10-07 07:07:28 +02:00
|
|
|
#endif // WEBRTC_VOICE_ENGINE_CONFIGURATIONS_H_
|