From 3ffa7915c351d7127a17c038a0109ad398644d2e Mon Sep 17 00:00:00 2001 From: Mathieu Rene Date: Mon, 23 Jan 2012 11:01:24 -0500 Subject: [PATCH] switch_rtp: fix audio glitches in jingle streams since ICE packets do not interrupt the RTP stream, we do not want to return a CNG frame when we get one --- src/switch_rtp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/switch_rtp.c b/src/switch_rtp.c index fd5b83c738..66055012c8 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -3259,8 +3259,10 @@ static int rtp_common_read(switch_rtp_t *rtp_session, switch_payload_t *payload_ if (rtp_session->recv_msg.header.version == 0) { if (rtp_session->ice_user) { handle_ice(rtp_session, (void *) &rtp_session->recv_msg, bytes); + goto recvfrom; } else if (rtp_session->remote_stun_addr) { handle_stun_ping_reply(rtp_session, (void *) &rtp_session->recv_msg, bytes); + goto recvfrom; } }