aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-09 16:24:52 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2010-02-09 16:24:52 +0000
commitddf46ba018f036741553169b7ad9589b1d12c989 (patch)
treee9d0e021ba921b65306a0b8f1cfe8d659755b6f0
parentdc883acadab7933788ca8ec23b173ed2330fce1d (diff)
Don't offer MMR or JBIG transcoding during T.38 negotiation.
After further discussion with Steve Underwood, we should not (yet) be offering to receive MMR or JBIG transcoded streams from T.38 endpoints. A future spandsp release will support those features, and then they can be enabled during negotiation git-svn-id: http://svn.digium.com/svn/asterisk/trunk@245680 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--apps/app_fax.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/app_fax.c b/apps/app_fax.c
index bef5ed551..ede204437 100644
--- a/apps/app_fax.c
+++ b/apps/app_fax.c
@@ -373,8 +373,12 @@ static int transmit_audio(fax_session *s)
.rate = AST_T38_RATE_14400,
.rate_management = AST_T38_RATE_MANAGEMENT_TRANSFERRED_TCF,
.fill_bit_removal = 1,
- .transcoding_mmr = 1,
- .transcoding_jbig = 1,
+/*
+ * spandsp has API calls to support MMR and JBIG transcoding, but they aren't
+ * implemented quite yet... so don't offer them to the remote endpoint
+ * .transcoding_mmr = 1,
+ * .transcoding_jbig = 1,
+*/
};
/* if in called party mode, try to use T.38 */