summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/moz-patch-stack/0080.patch
blob: 1e8257408f707b3746da2d4e706d62f9b915ad4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From: Jan-Ivar Bruaroey <jib@mozilla.com>
Date: Wed, 28 Jun 2023 20:45:00 -0400
Subject: Bug 1839451 - (fix-0f43da2248) Keep mozilla's
 RTCPReceiver::RemoteRTCPSenderInfo function working.

Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/154c9cdb386d0f50c5e1549270e1af6ab4969602
---
 modules/rtp_rtcp/source/rtcp_receiver.cc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/rtp_rtcp/source/rtcp_receiver.cc b/modules/rtp_rtcp/source/rtcp_receiver.cc
index 94de316421..bda6ad9a52 100644
--- a/modules/rtp_rtcp/source/rtcp_receiver.cc
+++ b/modules/rtp_rtcp/source/rtcp_receiver.cc
@@ -368,10 +368,10 @@ void RTCPReceiver::RemoteRTCPSenderInfo(uint32_t* packet_count,
                                         int64_t* ntp_timestamp_ms,
                                         int64_t* remote_ntp_timestamp_ms) const {
   MutexLock lock(&rtcp_receiver_lock_);
-  *packet_count = remote_sender_packet_count_;
-  *octet_count = remote_sender_octet_count_;
-  *ntp_timestamp_ms = last_received_sr_ntp_.ToMs();
-  *remote_ntp_timestamp_ms = remote_sender_ntp_time_.ToMs();
+  *packet_count = remote_sender_.packets_sent;
+  *octet_count = remote_sender_.bytes_sent;
+  *ntp_timestamp_ms = remote_sender_.last_arrival_timestamp.ToMs();
+  *remote_ntp_timestamp_ms = remote_sender_.last_remote_timestamp.ToMs();
 }
 
 std::vector<ReportBlockData> RTCPReceiver::GetLatestReportBlockData() const {