aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-22 21:27:12 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-22 21:27:12 +0000
commitf9781942fb3fa0b44ff91f3a57e2b7556bf3ed54 (patch)
tree98fc824a493d6fb8301c738e0d1636c83baf56df
parent17db6392cb9e01670428793600ebf4fab88c433c (diff)
Increase the silence threshold to 128 to "fix" it, so I'm told. (issue #6595 reported by davetroy fixed by casper)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@29555 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_waitforsilence.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_waitforsilence.c b/apps/app_waitforsilence.c
index 615eddbce..64839f352 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 */