[Freeswitch-svn] [commit] r3236 - freeswitch/trunk/src/mod/endpoints/mod_sofia
Freeswitch SVN
anthm at freeswitch.org
Mon Oct 30 10:27:06 EST 2006
Author: anthm
Date: Mon Oct 30 10:27:05 2006
New Revision: 3236
Modified:
freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
Log:
let sofia have here way
Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c Mon Oct 30 10:27:05 2006
@@ -252,6 +252,7 @@
struct private_object {
sofia_private_t sofia_private;
uint32_t flags;
+ uint32_t agreed_pt;
switch_core_session_t *session;
switch_frame_t read_frame;
const switch_codec_implementation_t *codecs[SWITCH_MAX_CODECS];
@@ -1329,7 +1330,7 @@
tech_pvt->local_sdp_audio_port,
tech_pvt->remote_sdp_audio_ip,
tech_pvt->remote_sdp_audio_port,
- tech_pvt->read_codec.implementation->ianacode,
+ tech_pvt->agreed_pt,
tech_pvt->read_codec.implementation->microseconds_per_frame / 1000);
@@ -1352,7 +1353,7 @@
tech_pvt->local_sdp_audio_port,
tech_pvt->remote_sdp_audio_ip,
tech_pvt->remote_sdp_audio_port,
- tech_pvt->read_codec.implementation->ianacode,
+ tech_pvt->agreed_pt,
tech_pvt->read_codec.implementation->encoded_bytes_per_frame,
tech_pvt->codec_ms * 1000,
(switch_rtp_flag_t) flags,
@@ -2015,6 +2016,7 @@
tech_pvt->remote_sdp_audio_ip = switch_core_session_strdup(session, (char *)sdp->sdp_connection->c_address);
tech_pvt->rm_fmtp = switch_core_session_strdup(session, (char *)map->rm_fmtp);
tech_pvt->remote_sdp_audio_port = (switch_port_t)m->m_port;
+ tech_pvt->agreed_pt = map->rm_pt;
break;
} else {
match = 0;
More information about the Freeswitch-svn
mailing list