From 0babb4a4e68f60a2862c98bafe4f9a748d077fff Mon Sep 17 00:00:00 2001 From: "pthatcher@webrtc.org" Date: Tue, 9 Dec 2014 19:01:45 +0000 Subject: [PATCH] Fix a comment. R=juberti@webrtc.org, pbos@webrtc.org, sprang@webrtc.org Review URL: https://webrtc-codereview.appspot.com/28209004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7851 4adac7df-926f-26a2-2b94-8c16560cd09d --- talk/media/webrtc/webrtcvideoengine.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/talk/media/webrtc/webrtcvideoengine.cc b/talk/media/webrtc/webrtcvideoengine.cc index bcdaf7acd0..0d55c319a0 100644 --- a/talk/media/webrtc/webrtcvideoengine.cc +++ b/talk/media/webrtc/webrtcvideoengine.cc @@ -3948,7 +3948,8 @@ bool WebRtcVideoMediaChannel::SetSendParams( // If the set of SSRCs isn't populated, then don't apply them. If we // do, we'll cause a bug where adding a stream, then removing a // stream, then re-adding a stream with the same primary SSRC will - // cause the sequence numbers to change and confuse the sender. + // cause the sequence numbers to change and confuse the receiver due + // to jumping SRTP sequence numbers. if (send_params.stream.first_ssrc() != 0) { if (!SetSendSsrcs(channel_id, send_params.stream, codec)) { return false;