From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- third_party/libwebrtc/call/call_basic_stats.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 third_party/libwebrtc/call/call_basic_stats.h (limited to 'third_party/libwebrtc/call/call_basic_stats.h') diff --git a/third_party/libwebrtc/call/call_basic_stats.h b/third_party/libwebrtc/call/call_basic_stats.h new file mode 100644 index 0000000000..98febe9405 --- /dev/null +++ b/third_party/libwebrtc/call/call_basic_stats.h @@ -0,0 +1,21 @@ +#ifndef CALL_CALL_BASIC_STATS_H_ +#define CALL_CALL_BASIC_STATS_H_ + +#include + +namespace webrtc { + +// named to avoid conflicts with video/call_stats.h +struct CallBasicStats { + std::string ToString(int64_t time_ms) const; + + int send_bandwidth_bps = 0; // Estimated available send bandwidth. + int max_padding_bitrate_bps = 0; // Cumulative configured max padding. + int recv_bandwidth_bps = 0; // Estimated available receive bandwidth. + int64_t pacer_delay_ms = 0; + int64_t rtt_ms = -1; +}; + +} // namespace webrtc + +#endif // CALL_CALL_BASIC_STATS_H_ -- cgit v1.2.3