summaryrefslogtreecommitdiff
path: root/dsp.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-09-01 22:34:24 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-09-01 22:34:24 +0000
commit14c769230b112bb742ef94cc4aad70a5a861776a (patch)
tree503e0d8ede38e248c563303d4c80c06c524b1046 /dsp.c
parent37a3c098bfc6abeb34e3df81ae1c8d226d19b910 (diff)
allow longer 'busy' tones to be detected (issue #5085)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6498 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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