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 78ad5a0ef251386928f3cd9f077126464f159874..dfa146e780424501884fa1c0515758edbd37b897 100644 |
--- a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc |
+++ b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc |
@@ -324,7 +324,8 @@ RTCPSender::FeedbackState ModuleRtpRtcpImpl::GetFeedbackState() { |
&state.last_rr_ntp_frac, |
&state.remote_sr); |
- state.has_last_xr_rr = LastReceivedXrReferenceTimeInfo(&state.last_xr_rr); |
+ state.has_last_xr_rr = |
+ rtcp_receiver_.LastReceivedXrReferenceTimeInfo(&state.last_xr_rr); |
uint32_t tmp; |
BitrateSent(&state.send_bitrate, &tmp, &tmp, &tmp); |
@@ -898,11 +899,6 @@ bool ModuleRtpRtcpImpl::LastReceivedNTP( |
return true; |
} |
-bool ModuleRtpRtcpImpl::LastReceivedXrReferenceTimeInfo( |
- RtcpReceiveTimeInfo* info) const { |
- return rtcp_receiver_.LastReceivedXrReferenceTimeInfo(info); |
-} |
- |
bool ModuleRtpRtcpImpl::UpdateRTCPReceiveInformationTimers() { |
// If this returns true this channel has timed out. |
// Periodically check if this is true and if so call UpdateTMMBR. |