| Index: webrtc/modules/rtp_rtcp/source/rtcp_sender.cc
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_sender.cc b/webrtc/modules/rtp_rtcp/source/rtcp_sender.cc
|
| index ac3f337998d5dbea93638587bad2bce215160a57..dc022bf9e2c3039d2f12550bf4faadc73d63d0a8 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtcp_sender.cc
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtcp_sender.cc
|
| @@ -764,8 +764,7 @@ rtc::scoped_ptr<rtcp::RtcpPacket> RTCPSender::BuildReceiverReferenceTime(
|
| xr->From(ssrc_);
|
|
|
| rtcp::Rrtr rrtr;
|
| - rrtr.WithNtpSec(ctx.ntp_sec_);
|
| - rrtr.WithNtpFrac(ctx.ntp_frac_);
|
| + rrtr.WithNtp(NtpTime(ctx.ntp_sec_, ctx.ntp_frac_));
|
|
|
| xr->WithRrtr(&rrtr);
|
|
|
|
|