From: Mark Spencer Date: Tue, 11 Jan 2005 18:10:30 +0000 (+0000) Subject: Fix typo in tone detect (bug #3315) X-Git-Tag: 1.2.0-beta1~1416 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b846c71e0ae08a59768b1be169aa981be30f1600;p=thirdparty%2Fasterisk.git Fix typo in tone detect (bug #3315) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4759 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/dsp.c b/dsp.c index 60787ec29f..ff091a65ec 100755 --- a/dsp.c +++ b/dsp.c @@ -1196,10 +1196,10 @@ int ast_dsp_busydetect(struct ast_dsp *dsp) } #endif if (avgtone > dsp->historicnoise[x]) { - if (avgtone - (avgtone / BUSY_PERCENT) <= dsp->historicsilence[x]) + if (avgtone - (avgtone / BUSY_PERCENT) <= dsp->historicnoise[x]) hittone++; } else { - if (avgtone + (avgtone / BUSY_PERCENT) >= dsp->historicsilence[x]) + if (avgtone + (avgtone / BUSY_PERCENT) >= dsp->historicnoise[x]) hittone++; } }