aboutsummaryrefslogtreecommitdiffstats
path: root/dsp.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-01 22:34:24 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-01 22:34:24 +0000
commit91c7eb7448be47e0a4dfdb1d87ffb13ba995859b (patch)
tree503e0d8ede38e248c563303d4c80c06c524b1046 /dsp.c
parent2f151e509d5182abce37c7c0431659557570d41f (diff)
allow longer 'busy' tones to be detected (issue #5085)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6498 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'dsp.c')
-rwxr-xr-xdsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dsp.c b/dsp.c
index 9c74467ed..b1bdacef0 100755
--- a/dsp.c
+++ b/dsp.c
@@ -97,7 +97,7 @@ static struct progress {
#define BUSY_PAT_PERCENT 7 /* The percentage difference between measured and actual pattern */
#define BUSY_THRESHOLD 100 /* Max number of ms difference between max and min times in busy */
#define BUSY_MIN 75 /* Busy must be at least 80 ms in half-cadence */
-#define BUSY_MAX 1100 /* Busy can't be longer than 1100 ms in half-cadence */
+#define BUSY_MAX 3100 /* Busy can't be longer than 3100 ms in half-cadence */
/* Remember last 15 units */
#define DSP_HISTORY 15