]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Add doc and turn off premature media filter by default
authorOlle Johansson <oej@edvina.net>
Mon, 7 Sep 2009 11:56:22 +0000 (11:56 +0000)
committerOlle Johansson <oej@edvina.net>
Mon, 7 Sep 2009 11:56:22 +0000 (11:56 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@216654 65c4cc65-6c06-0410-ace0-fbb531ad65f3

CHANGES
channels/chan_sip.c

diff --git a/CHANGES b/CHANGES
index c57b7fc9ea7823651c165857f38b6085d6842d3f..b1773f0670cb3185b3736d64e08a5759f82fc3cb 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -8,6 +8,12 @@
 ===
 ======================================================================
 
+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 -------------
 -----------------------------------------------------------------------------------
index 3af8a3525342c8094836c33f6ea1b6e7fc361580..8a4ee97a8526dbafccd831a5b6a979f8c8364f66 100644 (file)
@@ -21873,7 +21873,7 @@ static int reload_config(enum channelreloadreason reason)
        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));