mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
Fix compilation error.
This commit is contained in:
parent
7add04a59f
commit
b08cdb2212
1 changed files with 4 additions and 3 deletions
|
|
@ -68,9 +68,10 @@ static void sdp_process(SalOp *h){
|
|||
if(h->cnx_ip_to_0000_if_sendonly_enabled && sal_media_description_has_dir(h->result,SalStreamSendOnly)) {
|
||||
set_addr_to_0000(h->result->addr);
|
||||
for(i=0;i<SAL_MEDIA_DESCRIPTION_MAX_STREAMS;++i){
|
||||
if (h->result->streams[i].dir == SalStreamSendOnly)
|
||||
set_addr_to_0000(h->result->streams[i].rtp_addr);
|
||||
set_addr_to_0000(h->result->streams[i].rtcp_addr);
|
||||
if (h->result->streams[i].dir == SalStreamSendOnly) {
|
||||
set_addr_to_0000(h->result->streams[i].rtp_addr);
|
||||
set_addr_to_0000(h->result->streams[i].rtcp_addr);
|
||||
}
|
||||
}
|
||||
}
|
||||
h->sdp_answer=(belle_sdp_session_description_t *)belle_sip_object_ref(media_description_to_sdp(h->result));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue