[asterisk-commits] branch 1.2 r29555 -
/branches/1.2/apps/app_waitforsilence.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon May 22 14:27:13 MST 2006
Author: file
Date: Mon May 22 16:27:12 2006
New Revision: 29555
URL: http://svn.digium.com/view/asterisk?rev=29555&view=rev
Log:
Increase the silence threshold to 128 to "fix" it, so I'm told. (issue #6595 reported by davetroy fixed by casper)
Modified:
branches/1.2/apps/app_waitforsilence.c
Modified: branches/1.2/apps/app_waitforsilence.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/apps/app_waitforsilence.c?rev=29555&r1=29554&r2=29555&view=diff
==============================================================================
--- branches/1.2/apps/app_waitforsilence.c (original)
+++ branches/1.2/apps/app_waitforsilence.c Mon May 22 16:27:12 2006
@@ -69,7 +69,7 @@
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 */
More information about the asterisk-commits
mailing list