From: Joshua Colp Date: Mon, 14 Apr 2008 13:52:49 +0000 (+0000) Subject: Don't change the SSRC when a new source comes into play, this might happen quite... X-Git-Tag: 1.4.20-rc1~67 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=19b8841503bd1f083816c73e58ee8d56f4f985d0;p=thirdparty%2Fasterisk.git Don't change the SSRC when a new source comes into play, this might happen quite often and depending on the remote side... they might not like this. (closes issue #12353) Reported by: dimas git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@114100 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/rtp.c b/main/rtp.c index 01d46e6d08..3621d3610a 100644 --- a/main/rtp.c +++ b/main/rtp.c @@ -2002,7 +2002,6 @@ int ast_rtp_settos(struct ast_rtp *rtp, int tos) void ast_rtp_new_source(struct ast_rtp *rtp) { rtp->set_marker_bit = 1; - rtp->ssrc = ast_random(); return; }