[asterisk-commits] mnicholson: branch mnicholson/fax-gateway-v21 r327745 - /team/mnicholson/fax-...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Jul 12 07:56:05 CDT 2011


Author: mnicholson
Date: Tue Jul 12 07:56:01 2011
New Revision: 327745

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=327745
Log:
don't detect CED

Modified:
    team/mnicholson/fax-gateway-v21/res/res_fax.c

Modified: team/mnicholson/fax-gateway-v21/res/res_fax.c
URL: http://svnview.digium.com/svn/asterisk/team/mnicholson/fax-gateway-v21/res/res_fax.c?view=diff&rev=327745&r1=327744&r2=327745
==============================================================================
--- team/mnicholson/fax-gateway-v21/res/res_fax.c (original)
+++ team/mnicholson/fax-gateway-v21/res/res_fax.c Tue Jul 12 07:56:01 2011
@@ -2409,10 +2409,10 @@
 	gateway->framehook = -1;
 
 	ast_dsp_set_features(gateway->chan_dsp, DSP_FEATURE_FAX_DETECT);
-	ast_dsp_set_faxmode(gateway->chan_dsp, DSP_FAXMODE_DETECT_V21 | DSP_FAXMODE_DETECT_CED);
+	ast_dsp_set_faxmode(gateway->chan_dsp, DSP_FAXMODE_DETECT_V21);
 
 	ast_dsp_set_features(gateway->peer_dsp, DSP_FEATURE_FAX_DETECT);
-	ast_dsp_set_faxmode(gateway->peer_dsp, DSP_FAXMODE_DETECT_V21 | DSP_FAXMODE_DETECT_CED);
+	ast_dsp_set_faxmode(gateway->peer_dsp, DSP_FAXMODE_DETECT_V21);
 
 	details->caps = AST_FAX_TECH_GATEWAY;
 	if (!(gateway->s = fax_session_reserve(details, &gateway->token))) {




More information about the asterisk-commits mailing list