Browse Source

do not detect trickle ICE RTCP port as rtcp-mux

pull/107/head
Richard Fuchs 11 years ago
parent
commit
46ebfa3cd0
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      daemon/sdp.c

+ 3
- 1
daemon/sdp.c View File

@ -1284,7 +1284,9 @@ int sdp_streams(const GQueue *sessions, GQueue *streams, struct sdp_ng_flags *fl
SP_SET(sp, IMPLICIT_RTCP);
goto next;
}
if (attr->u.rtcp.port_num == sp->rtp_endpoint.port) {
if (attr->u.rtcp.port_num == sp->rtp_endpoint.port
&& !is_trickle_ice_address(&sp->rtp_endpoint))
{
SP_SET(sp, RTCP_MUX);
goto next;
}


Loading…
Cancel
Save