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
This commit is contained in:
andrew@webrtc.org
2012-05-09 19:09:03 +00:00
parent b213cd55ef
commit 270e9db039

View File

@ -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 * 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 * 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 // 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, virtual int SetVADStatus(int channel, bool enable,
VadModes mode = kVadConventional, VadModes mode = kVadConventional,
bool disableDTX = false) = 0; bool disableDTX = false) = 0;