BUG=webrtc:6506 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_chromium_rel_ng;master.tryserver.chromium.mac:mac_chromium_rel_ng,ios-device;master.tryserver.chromium.win:win_chromium_rel_ng;master.tryserver.chromium.android:android_compile_dbg,linux_android_rel_ng Review-Url: https://codereview.webrtc.org/2549443002 Cr-Commit-Position: refs/heads/master@{#15379}
29 lines
1.1 KiB
C
29 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef WEBRTC_VOICE_ENGINE_CONFIGURATIONS_H_
|
|
#define WEBRTC_VOICE_ENGINE_CONFIGURATIONS_H_
|
|
|
|
#include "webrtc/typedefs.h"
|
|
|
|
// ============================================================================
|
|
// VoiceEngine
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Settings for VoiceEngine
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#if !defined(WEBRTC_ANDROID) && !defined(WEBRTC_IOS)
|
|
#define WEBRTC_VOICE_ENGINE_TYPING_DETECTION // Typing detection
|
|
#endif
|
|
|
|
#endif // WEBRTC_VOICE_ENGINE_CONFIGURATIONS_H_
|