Keep reading the same ssrc when it is still active

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@184 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
aymeric 2008-11-29 11:25:35 +00:00
parent cab938cb29
commit 83351c39ca

View file

@ -148,6 +148,12 @@ void rtp_session_rtp_parse(RtpSession *session, mblk_t *mp, uint32_t local_str_t
return;
}
}
else{
/* The SSRC change must not happen if we still receive
ssrc from the initial source. */
session->inc_same_ssrc_count=0;
}
}else{
session->ssrc_set=TRUE;
session->rcv.ssrc=rtp->ssrc;