From: Kevin P. Fleming Date: Tue, 15 Dec 2009 14:35:46 +0000 (+0000) Subject: spandsp does in fact support V.17 modulation at 14.4 kilobits per second, X-Git-Tag: 11.0.0-beta1~3725 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df1fc1f381d02dcc65c922e7675f6e6ec455cb23;p=thirdparty%2Fasterisk.git spandsp does in fact support V.17 modulation at 14.4 kilobits per second, so we should generate T38MaxBitRate of 14400 (even though that doesn't really affect the FAX transmission much at all) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@235010 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_fax.c b/apps/app_fax.c index dab02af2f5..bef5ed5511 100644 --- a/apps/app_fax.c +++ b/apps/app_fax.c @@ -370,7 +370,7 @@ static int transmit_audio(fax_session *s) enum ast_t38_state t38_state; struct ast_control_t38_parameters t38_parameters = { .version = 0, .max_ifp = 800, - .rate = AST_T38_RATE_9600, + .rate = AST_T38_RATE_14400, .rate_management = AST_T38_RATE_MANAGEMENT_TRANSFERRED_TCF, .fill_bit_removal = 1, .transcoding_mmr = 1,