Only write a received packet out if we are actually bridged to something

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41574 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Joshua Colp 19 years ago
parent 3f888b84f3
commit 29ee02bfce

@ -2843,10 +2843,12 @@ static int p2p_rtp_callback(int *id, int fd, short events, void *cbdata)
} }
/* If this came from the RTP stream, write out via RTP - if it's RTCP, write out via RTCP */ /* If this came from the RTP stream, write out via RTP - if it's RTCP, write out via RTCP */
if (is_rtp) if (ast_rtp_get_bridged(rtp)) {
bridge_p2p_rtp_write(rtp, header, res, hdrlen); if (is_rtp)
else if (is_rtcp) bridge_p2p_rtp_write(rtp, header, res, hdrlen);
bridge_p2p_rtcp_write(rtp, header, res); else if (is_rtcp)
bridge_p2p_rtcp_write(rtp, header, res);
}
return 1; return 1;
} }

Loading…
Cancel
Save