[asterisk-commits] oej: trunk r47514 - in /trunk: ./
channels/chan_sip.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Sun Nov 12 09:15:50 MST 2006
Author: oej
Date: Sun Nov 12 10:15:49 2006
New Revision: 47514
URL: http://svn.digium.com/view/asterisk?view=rev&rev=47514
Log:
Restore auto-framing (DEA). Imported from 1.4
Modified:
trunk/ (props changed)
trunk/channels/chan_sip.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=47514&r1=47513&r2=47514
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Sun Nov 12 10:15:49 2006
@@ -4964,7 +4964,7 @@
}
}
if (framing && last_rtpmap_codec) {
- if (p->autoframing || global_autoframing) {
+ if (p->autoframing) {
struct ast_codec_pref *pref = ast_rtp_codec_getpref(p->rtp);
int codec_n;
int format = 0;
@@ -10123,6 +10123,7 @@
print_codec_to_cli(fd, &peer->prefs);
ast_cli(fd, ")\n");
+ ast_cli(fd, " Auto-Framing: %s \n", peer->autoframing ? "Yes" : "No");
ast_cli(fd, " Status : ");
peer_status(peer, status, sizeof(status));
ast_cli(fd, "%s\n",status);
@@ -10257,6 +10258,7 @@
print_codec_to_cli(fd, &user->prefs);
ast_cli(fd, ")\n");
+ ast_cli(fd, " Auto-Framing: %s \n", user->autoframing ? "Yes" : "No");
if (user->chanvars) {
ast_cli(fd, " Variables :\n");
for (v = user->chanvars ; v ; v = v->next)
@@ -10379,6 +10381,7 @@
ast_cli(fd, " Notify ringing state: %s\n", global_notifyringing ? "Yes" : "No");
ast_cli(fd, " SIP Transfer mode: %s\n", transfermode2str(global_allowtransfer));
ast_cli(fd, " Max Call Bitrate: %d kbps\r\n", default_maxcallbitrate);
+ ast_cli(fd, " Auto-Framing: %s \r\n", global_autoframing ? "Yes" : "No");
ast_cli(fd, "\nDefault Settings:\n");
ast_cli(fd, "-----------------\n");
ast_cli(fd, " Context: %s\n", default_context);
@@ -15559,6 +15562,7 @@
user->capability = global_capability;
user->allowtransfer = global_allowtransfer;
user->maxcallbitrate = default_maxcallbitrate;
+ user->autoframing = global_autoframing;
user->prefs = default_prefs;
/* set default context */
strcpy(user->context, default_context);
@@ -15672,6 +15676,7 @@
peer->rtpholdtimeout = global_rtpholdtimeout;
peer->rtpkeepalive = global_rtpkeepalive;
peer->allowtransfer = global_allowtransfer;
+ peer->autoframing = global_autoframing;
strcpy(peer->vmexten, default_vmexten);
peer->secret[0] = '\0';
peer->md5secret[0] = '\0';
More information about the asterisk-commits
mailing list