From: Kevin P. Fleming Date: Thu, 1 Sep 2005 22:34:24 +0000 (+0000) Subject: allow longer 'busy' tones to be detected (issue #5085) X-Git-Tag: 1.2.0-beta2~414 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14c769230b112bb742ef94cc4aad70a5a861776a;p=thirdparty%2Fasterisk.git 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 --- diff --git a/dsp.c b/dsp.c index 9c74467ed0..b1bdacef0e 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