From: Joshua Colp Date: Mon, 22 May 2006 21:27:12 +0000 (+0000) Subject: Increase the silence threshold to 128 to "fix" it, so I'm told. (issue #6595 reported... X-Git-Tag: 1.2.9.1~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=919e8741b4bd13f4fc985b0af6f897615fa1250f;p=thirdparty%2Fasterisk.git Increase the silence threshold to 128 to "fix" it, so I'm told. (issue #6595 reported by davetroy fixed by casper) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@29555 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_waitforsilence.c b/apps/app_waitforsilence.c index 615eddbcee..64839f352e 100644 --- a/apps/app_waitforsilence.c +++ b/apps/app_waitforsilence.c @@ -69,7 +69,7 @@ static int do_waiting(struct ast_channel *chan, int maxsilence) { int totalsilence = 0; int dspsilence = 0; int gotsilence = 0; - static int silencethreshold = 64; + static int silencethreshold = 128; int rfmt = 0; int res = 0; struct ast_dsp *sildet; /* silence detector dsp */