void sofia_glue_tech_patch_sdp(private_object_t *tech_pvt)
{
switch_size_t len;
- char *p, *q, *ip_ptr = NULL, *port_ptr = NULL;
+ char *p, *q, *ip_ptr = NULL, *port_ptr = NULL, *vport_ptr = NULL;
int x;
if (switch_strlen_zero(tech_pvt->local_sdp_str)) {
if ((p = (char *)switch_stristr("m=audio ", tech_pvt->local_sdp_str))) {
port_ptr = p + 8;
}
+
+ if ((p = (char *)switch_stristr("m=video ", tech_pvt->local_sdp_str))) {
+ vport_ptr = p + 8;
+ }
if (!(ip_ptr && port_ptr)) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "%s SDP has no audio in it.\n%s\n",
while(p && *p && (*p >= '0' && *p <= '9')) {
p++;
}
+ } else if (vport_ptr && p == vport_ptr) {
+ char port_buf[25] = "";
+
+ switch_snprintf(port_buf, sizeof(port_buf), "%u", tech_pvt->adv_sdp_video_port);
+ strncpy(q, port_buf, strlen(port_buf));
+ q += strlen(port_buf);
+ x = 0;
+ while(p && *p && (*p >= '0' && *p <= '9')) {
+ p++;
+ }
}
*q++ = *p++;