| Index: webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
|
| index c981ad7744665e9ae1cd946220c031cc0476b4e9..790319a99614ca29bfa0198458ac7df8343afd20 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc
|
| @@ -187,7 +187,7 @@ void ModuleRtpRtcpImpl::Process() {
|
| for (std::vector<RTCPReportBlock>::iterator it = receive_blocks.begin();
|
| it != receive_blocks.end(); ++it) {
|
| int64_t rtt = 0;
|
| - rtcp_receiver_.RTT(it->remoteSSRC, &rtt, NULL, NULL, NULL);
|
| + rtcp_receiver_.RTT(it->sender_ssrc, &rtt, NULL, NULL, NULL);
|
| max_rtt = (rtt > max_rtt) ? rtt : max_rtt;
|
| }
|
| // Report the rtt.
|
|
|