Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Unified Diff: webrtc/modules/rtp_rtcp/source/rtcp_receiver.h

Issue 2986543002: Remove RtpRtcp::RemoteRTCPStat(RTCPSenderInfo*) as unused (Closed)
Patch Set: rebase Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h ('k') | webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/rtp_rtcp/source/rtcp_receiver.h
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h
index 33b2b30ad639ae941fcdc553aa225eadcdf8528f..5f0b151d42678c70d69641fadebe63abf9e0052e 100644
--- a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h
@@ -86,8 +86,6 @@ class RTCPReceiver {
int64_t* min_rtt_ms,
int64_t* max_rtt_ms) const;
- int32_t SenderInfoReceived(RTCPSenderInfo* sender_info) const;
-
void SetRtcpXrRrtrStatus(bool enable);
bool GetAndResetXrRrRtt(int64_t* rtt_ms);
@@ -222,9 +220,10 @@ class RTCPReceiver {
std::set<uint32_t> registered_ssrcs_ GUARDED_BY(rtcp_receiver_lock_);
// Received sender report.
- RTCPSenderInfo remote_sender_info_;
+ NtpTime remote_sender_ntp_time_ GUARDED_BY(rtcp_receiver_lock_);
+ uint32_t remote_sender_rtp_time_ GUARDED_BY(rtcp_receiver_lock_);
// When did we receive the last send report.
- NtpTime last_received_sr_ntp_;
+ NtpTime last_received_sr_ntp_ GUARDED_BY(rtcp_receiver_lock_);
// Received XR receive time report.
rtcp::ReceiveTimeInfo remote_time_info_;
« no previous file with comments | « webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h ('k') | webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698