mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
update ortp and ms2 to fix problem when sending RFC2833 dtmfs with a number which is not the one choosen by the remote.
This commit is contained in:
parent
319116a6db
commit
f0c786e6e4
3 changed files with 9 additions and 7 deletions
|
|
@ -1069,11 +1069,13 @@ LinphoneCall * linphone_call_new_incoming(LinphoneCore *lc, LinphoneAddress *fro
|
|||
// It is licit to receive an INVITE without SDP
|
||||
// In this case WE chose the media parameters according to policy.
|
||||
linphone_call_set_compatible_incoming_call_parameters(call, md);
|
||||
/* set multicast role & address if any*/
|
||||
for (i=0;i<md->nb_streams;i++){
|
||||
if (!sal_call_is_offerer(op) && ms_is_multicast(md->streams[i].rtp_addr)){
|
||||
md->streams[i].multicast_role = SalMulticastReceiver;
|
||||
strncpy(call->media_ports[i].multicast_ip,md->streams[i].rtp_addr,sizeof(call->media_ports[i].multicast_ip));
|
||||
/* set multicast role & address if any*/
|
||||
if (!sal_call_is_offerer(op)){
|
||||
for (i=0;i<md->nb_streams;i++){
|
||||
if (md->streams[i].rtp_addr[0]!='\0' && ms_is_multicast(md->streams[i].rtp_addr)){
|
||||
md->streams[i].multicast_role = SalMulticastReceiver;
|
||||
strncpy(call->media_ports[i].multicast_ip,md->streams[i].rtp_addr,sizeof(call->media_ports[i].multicast_ip));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 175a46b05d85a9dec2e5b3671db59340f1c3bd25
|
||||
Subproject commit 78b425a093453a43a5a75ca8caf88639e4569aa3
|
||||
2
oRTP
2
oRTP
|
|
@ -1 +1 @@
|
|||
Subproject commit 6ac50c1315aecb4a419b220af51e6361e7ee7813
|
||||
Subproject commit ebca7f042c83c6211a3aa6d0801ec6d70811f4f2
|
||||
Loading…
Add table
Reference in a new issue