[asterisk-commits] oej: branch 1.6.0 r216654 - in /branches/1.6.0: CHANGES channels/chan_sip.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Sep 7 06:56:35 CDT 2009


Author: oej
Date: Mon Sep  7 06:56:22 2009
New Revision: 216654

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=216654
Log:
Add doc and turn off premature media filter by default

Modified:
    branches/1.6.0/CHANGES
    branches/1.6.0/channels/chan_sip.c

Modified: branches/1.6.0/CHANGES
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.0/CHANGES?view=diff&rev=216654&r1=216653&r2=216654
==============================================================================
--- branches/1.6.0/CHANGES (original)
+++ branches/1.6.0/CHANGES Mon Sep  7 06:56:22 2009
@@ -7,6 +7,12 @@
 === and the other UPGRADE files for older releases.
 ===
 ======================================================================
+
+SIP changes
+-----------
+ * Added a new option "prematuremedia" that defaults to "no". If you turn this
+   option on, chan_sip will not automatically initiate early media if it receives
+   audio from the incoming channel before there's been a progress indication.
 
 -----------------------------------------------------------------------------------
 --- Functionality changes from Asterisk 1.6.0.10 to Asterisk 1.6.0.11 -------------

Modified: branches/1.6.0/channels/chan_sip.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.0/channels/chan_sip.c?view=diff&rev=216654&r1=216653&r2=216654
==============================================================================
--- branches/1.6.0/channels/chan_sip.c (original)
+++ branches/1.6.0/channels/chan_sip.c Mon Sep  7 06:56:22 2009
@@ -21873,7 +21873,7 @@
 	snprintf(global_useragent, sizeof(global_useragent), "%s %s", DEFAULT_USERAGENT, ast_get_version());
 	snprintf(global_sdpsession, sizeof(global_sdpsession), "%s %s", DEFAULT_SDPSESSION, ast_get_version());
 	snprintf(global_sdpowner, sizeof(global_sdpowner), "%s", DEFAULT_SDPOWNER);
-	global_prematuremediafilter = TRUE;
+	global_prematuremediafilter = FALSE;
 	ast_copy_string(default_notifymime, DEFAULT_NOTIFYMIME, sizeof(default_notifymime));
 	ast_copy_string(global_realm, S_OR(ast_config_AST_SYSTEM_NAME, DEFAULT_REALM), sizeof(global_realm));
 	ast_copy_string(default_callerid, DEFAULT_CALLERID, sizeof(default_callerid));




More information about the asterisk-commits mailing list