From 270e9db039aeeeaa36d956151d4126c94d164bb8 Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Wed, 9 May 2012 19:09:03 +0000 Subject: [PATCH] Clarify the impact of disabling VAD on DTX. TBR=henrika@webrtc.org BUG= TEST= Review URL: https://webrtc-codereview.appspot.com/566009 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2207 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/voice_engine/main/interface/voe_codec.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/voice_engine/main/interface/voe_codec.h b/src/voice_engine/main/interface/voe_codec.h index 413bc90e4..37f8f68f4 100644 --- a/src/voice_engine/main/interface/voe_codec.h +++ b/src/voice_engine/main/interface/voe_codec.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. + * 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 @@ -103,7 +103,8 @@ public: // Sets the VAD/DTX (silence suppression) status and |mode| for a - // specified |channel|. + // specified |channel|. Disabling VAD (through |enable|) will also disable + // DTX; it is not necessary to explictly set |disableDTX| in this case. virtual int SetVADStatus(int channel, bool enable, VadModes mode = kVadConventional, bool disableDTX = false) = 0;