60 lines
1.7 KiB
C
60 lines
1.7 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.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef MODULES_RTP_RTCP_INCLUDE_REPORT_BLOCK_DATA_H_
|
||
|
|
#define MODULES_RTP_RTCP_INCLUDE_REPORT_BLOCK_DATA_H_
|
||
|
|
|
||
|
|
#include "modules/rtp_rtcp/include/rtp_rtcp_defines.h"
|
||
|
|
|
||
|
|
namespace webrtc {
|
||
|
|
|
||
|
|
class ReportBlockData {
|
||
|
|
public:
|
||
|
|
ReportBlockData();
|
||
|
|
|
||
|
|
const RTCPReportBlock& report_block() const { return report_block_; }
|
||
|
|
int64_t report_block_timestamp_utc_us() const {
|
||
|
|
return report_block_timestamp_utc_us_;
|
||
|
|
}
|
||
|
|
int64_t last_rtt_ms() const { return last_rtt_ms_; }
|
||
|
|
int64_t min_rtt_ms() const { return min_rtt_ms_; }
|
||
|
|
int64_t max_rtt_ms() const { return max_rtt_ms_; }
|
||
|
|
int64_t sum_rtt_ms() const { return sum_rtt_ms_; }
|
||
|
|
size_t num_rtts() const { return num_rtts_; }
|
||
|
|
bool has_rtt() const { return num_rtts_ != 0; }
|
||
|
|
|
||
|
|
double AvgRttMs() const;
|
||
|
|
|
||
|
|
void SetReportBlock(RTCPReportBlock report_block,
|
||
|
|
int64_t report_block_timestamp_utc_us);
|
||
|
|
void AddRoundTripTimeSample(int64_t rtt_ms);
|
||
|
|
|
||
|
|
private:
|
||
|
|
RTCPReportBlock report_block_;
|
||
|
|
int64_t report_block_timestamp_utc_us_;
|
||
|
|
|
||
|
|
int64_t last_rtt_ms_;
|
||
|
|
int64_t min_rtt_ms_;
|
||
|
|
int64_t max_rtt_ms_;
|
||
|
|
int64_t sum_rtt_ms_;
|
||
|
|
size_t num_rtts_;
|
||
|
|
};
|
||
|
|
|
||
|
|
class ReportBlockDataObserver {
|
||
|
|
public:
|
||
|
|
virtual ~ReportBlockDataObserver() = default;
|
||
|
|
|
||
|
|
virtual void OnReportBlockDataUpdated(ReportBlockData report_block_data) = 0;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace webrtc
|
||
|
|
|
||
|
|
#endif // MODULES_RTP_RTCP_INCLUDE_REPORT_BLOCK_DATA_H_
|