diff --git a/dsp.c b/dsp.c index dfa6b1e3d7e81cfa2cbefb96c416556be892c30a..7e62c8bf72a845569720cf181fe4d0ae9938554a 100644 --- a/dsp.c +++ b/dsp.c @@ -1322,6 +1322,7 @@ int ast_dsp_busydetect(struct ast_dsp *dsp) res = 0; } } +#ifndef BUSYDETECT_TONEONLY /* If we know the expected busy tone silent-period length, check we are in the range */ if (res && (dsp->busy_quietlength > 0)) { if (abs(avgsilence - dsp->busy_quietlength) > (dsp->busy_quietlength*BUSY_PAT_PERCENT/100)) { @@ -1332,6 +1333,7 @@ int ast_dsp_busydetect(struct ast_dsp *dsp) res = 0; } } +#endif #if 1 if (res) ast_log(LOG_DEBUG, "ast_dsp_busydetect detected busy, avgtone: %d, avgsilence %d\n", avgtone, avgsilence);