mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 06:10:40 +01:00

The ReportBlockData contains information about a ReportBlock and additional data such as RTT. This will be used for the calculation of RTCRemoteInboundRtpStreamStats, see full picture here: https://webrtc-review.googlesource.com/c/src/+/134107 ReportBlockData is a class version of the previously internal struct RTCPReceiver::ReportBlockWithRtt. - The new name makes sense even if we add more info to it, which will be needed for future metrics. - The new location is modules/rtp_rtcp/include/report_block_data.h. The RTCPReceiver allows obtaining the ReportBlockData in two ways: 1. Using a ReportBlockDataObserver that is notified on receiving a report block. 2. Using the GetLatestReportBlockData(). Both codepaths will be needed; video stats uses observers and audio stats uses polling. Further plumbing will be done in follow-up CLs. Bug: webrtc:10455, webrtc:10456 Change-Id: Ic9e5b4f451b5f4b203efcd6fa3bbf9736487e1f4 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/136584 Commit-Queue: Henrik Boström <hbos@webrtc.org> Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27961}
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
/*
|
|
* Copyright 2019 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "modules/rtp_rtcp/include/report_block_data.h"
|
|
|
|
namespace webrtc {
|
|
|
|
ReportBlockData::ReportBlockData()
|
|
: report_block_(),
|
|
report_block_timestamp_utc_us_(0),
|
|
last_rtt_ms_(0),
|
|
min_rtt_ms_(0),
|
|
max_rtt_ms_(0),
|
|
sum_rtt_ms_(0),
|
|
num_rtts_(0) {}
|
|
|
|
double ReportBlockData::AvgRttMs() const {
|
|
return num_rtts_ ? static_cast<double>(sum_rtt_ms_) / num_rtts_ : 0.0;
|
|
}
|
|
|
|
void ReportBlockData::SetReportBlock(RTCPReportBlock report_block,
|
|
int64_t report_block_timestamp_utc_us) {
|
|
report_block_ = report_block;
|
|
report_block_timestamp_utc_us_ = report_block_timestamp_utc_us;
|
|
}
|
|
|
|
void ReportBlockData::AddRoundTripTimeSample(int64_t rtt_ms) {
|
|
if (rtt_ms > max_rtt_ms_)
|
|
max_rtt_ms_ = rtt_ms;
|
|
if (num_rtts_ == 0 || rtt_ms < min_rtt_ms_)
|
|
min_rtt_ms_ = rtt_ms;
|
|
last_rtt_ms_ = rtt_ms;
|
|
sum_rtt_ms_ += rtt_ms;
|
|
++num_rtts_;
|
|
}
|
|
|
|
} // namespace webrtc
|