2016-08-30 14:04:35 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright 2016 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef API_STATS_RTCSTATS_OBJECTS_H_
|
|
|
|
|
#define API_STATS_RTCSTATS_OBJECTS_H_
|
2016-08-30 14:04:35 -07:00
|
|
|
|
2018-11-28 16:47:49 +01:00
|
|
|
#include <stdint.h>
|
2019-07-05 19:08:33 +02:00
|
|
|
|
2018-03-20 13:24:20 +01:00
|
|
|
#include <memory>
|
2016-08-30 14:04:35 -07:00
|
|
|
#include <string>
|
2017-02-01 01:55:59 -08:00
|
|
|
#include <vector>
|
2016-08-30 14:04:35 -07:00
|
|
|
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "api/stats/rtc_stats.h"
|
2018-10-16 14:13:50 +02:00
|
|
|
#include "rtc_base/system/rtc_export.h"
|
2016-08-30 14:04:35 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2016-10-18 12:48:31 -07:00
|
|
|
// https://w3c.github.io/webrtc-pc/#idl-def-rtcdatachannelstate
|
|
|
|
|
struct RTCDataChannelState {
|
2017-08-08 10:48:15 -07:00
|
|
|
static const char* const kConnecting;
|
|
|
|
|
static const char* const kOpen;
|
|
|
|
|
static const char* const kClosing;
|
|
|
|
|
static const char* const kClosed;
|
2016-10-18 12:48:31 -07:00
|
|
|
};
|
|
|
|
|
|
2016-10-11 14:54:49 -07:00
|
|
|
// https://w3c.github.io/webrtc-stats/#dom-rtcstatsicecandidatepairstate
|
|
|
|
|
struct RTCStatsIceCandidatePairState {
|
2017-08-08 10:48:15 -07:00
|
|
|
static const char* const kFrozen;
|
|
|
|
|
static const char* const kWaiting;
|
|
|
|
|
static const char* const kInProgress;
|
|
|
|
|
static const char* const kFailed;
|
|
|
|
|
static const char* const kSucceeded;
|
2016-10-11 14:54:49 -07:00
|
|
|
};
|
|
|
|
|
|
2016-10-18 12:48:31 -07:00
|
|
|
// https://w3c.github.io/webrtc-pc/#rtcicecandidatetype-enum
|
2016-10-07 02:18:47 -07:00
|
|
|
struct RTCIceCandidateType {
|
2017-08-08 10:48:15 -07:00
|
|
|
static const char* const kHost;
|
|
|
|
|
static const char* const kSrflx;
|
|
|
|
|
static const char* const kPrflx;
|
|
|
|
|
static const char* const kRelay;
|
2016-10-07 02:18:47 -07:00
|
|
|
};
|
|
|
|
|
|
2017-01-16 07:38:02 -08:00
|
|
|
// https://w3c.github.io/webrtc-pc/#idl-def-rtcdtlstransportstate
|
|
|
|
|
struct RTCDtlsTransportState {
|
2017-08-08 10:48:15 -07:00
|
|
|
static const char* const kNew;
|
|
|
|
|
static const char* const kConnecting;
|
|
|
|
|
static const char* const kConnected;
|
|
|
|
|
static const char* const kClosed;
|
|
|
|
|
static const char* const kFailed;
|
2017-01-16 07:38:02 -08:00
|
|
|
};
|
|
|
|
|
|
2017-01-17 02:53:23 -08:00
|
|
|
// |RTCMediaStreamTrackStats::kind| is not an enum in the spec but the only
|
|
|
|
|
// valid values are "audio" and "video".
|
|
|
|
|
// https://w3c.github.io/webrtc-stats/#dom-rtcmediastreamtrackstats-kind
|
|
|
|
|
struct RTCMediaStreamTrackKind {
|
2017-08-08 10:48:15 -07:00
|
|
|
static const char* const kAudio;
|
|
|
|
|
static const char* const kVideo;
|
2017-01-17 02:53:23 -08:00
|
|
|
};
|
|
|
|
|
|
2017-11-21 10:49:36 -08:00
|
|
|
// https://w3c.github.io/webrtc-stats/#dom-rtcnetworktype
|
|
|
|
|
struct RTCNetworkType {
|
|
|
|
|
static const char* const kBluetooth;
|
|
|
|
|
static const char* const kCellular;
|
|
|
|
|
static const char* const kEthernet;
|
|
|
|
|
static const char* const kWifi;
|
|
|
|
|
static const char* const kWimax;
|
|
|
|
|
static const char* const kVpn;
|
|
|
|
|
static const char* const kUnknown;
|
|
|
|
|
};
|
|
|
|
|
|
2019-05-28 17:42:38 +02:00
|
|
|
// https://w3c.github.io/webrtc-stats/#dom-rtcqualitylimitationreason
|
|
|
|
|
struct RTCQualityLimitationReason {
|
|
|
|
|
static const char* const kNone;
|
|
|
|
|
static const char* const kCpu;
|
|
|
|
|
static const char* const kBandwidth;
|
|
|
|
|
static const char* const kOther;
|
|
|
|
|
};
|
|
|
|
|
|
2019-04-09 13:59:31 +02:00
|
|
|
// https://webrtc.org/experiments/rtp-hdrext/video-content-type/
|
|
|
|
|
struct RTCContentType {
|
|
|
|
|
static const char* const kUnspecified;
|
|
|
|
|
static const char* const kScreenshare;
|
|
|
|
|
};
|
|
|
|
|
|
2016-10-24 04:00:05 -07:00
|
|
|
// https://w3c.github.io/webrtc-stats/#certificatestats-dict*
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCCertificateStats final : public RTCStats {
|
2016-10-24 04:00:05 -07:00
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCCertificateStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCCertificateStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
RTCCertificateStats(const RTCCertificateStats& other);
|
|
|
|
|
~RTCCertificateStats() override;
|
|
|
|
|
|
|
|
|
|
RTCStatsMember<std::string> fingerprint;
|
|
|
|
|
RTCStatsMember<std::string> fingerprint_algorithm;
|
|
|
|
|
RTCStatsMember<std::string> base64_certificate;
|
|
|
|
|
RTCStatsMember<std::string> issuer_certificate_id;
|
|
|
|
|
};
|
|
|
|
|
|
2016-11-23 02:32:06 -08:00
|
|
|
// https://w3c.github.io/webrtc-stats/#codec-dict*
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCCodecStats final : public RTCStats {
|
2016-11-23 02:32:06 -08:00
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCCodecStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCCodecStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
RTCCodecStats(const RTCCodecStats& other);
|
|
|
|
|
~RTCCodecStats() override;
|
|
|
|
|
|
|
|
|
|
RTCStatsMember<uint32_t> payload_type;
|
2017-02-28 06:56:04 -08:00
|
|
|
RTCStatsMember<std::string> mime_type;
|
2016-11-23 02:32:06 -08:00
|
|
|
RTCStatsMember<uint32_t> clock_rate;
|
2017-02-07 04:59:16 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7061
|
2016-11-23 02:32:06 -08:00
|
|
|
RTCStatsMember<uint32_t> channels;
|
2017-02-07 04:59:16 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7061
|
2017-02-28 06:56:04 -08:00
|
|
|
RTCStatsMember<std::string> sdp_fmtp_line;
|
2019-08-16 15:29:16 +00:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7061
|
|
|
|
|
RTCStatsMember<std::string> implementation;
|
2016-11-23 02:32:06 -08:00
|
|
|
};
|
|
|
|
|
|
2016-10-24 04:00:05 -07:00
|
|
|
// https://w3c.github.io/webrtc-stats/#dcstats-dict*
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCDataChannelStats final : public RTCStats {
|
2016-10-24 04:00:05 -07:00
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCDataChannelStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCDataChannelStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
RTCDataChannelStats(const RTCDataChannelStats& other);
|
|
|
|
|
~RTCDataChannelStats() override;
|
|
|
|
|
|
|
|
|
|
RTCStatsMember<std::string> label;
|
|
|
|
|
RTCStatsMember<std::string> protocol;
|
|
|
|
|
RTCStatsMember<int32_t> datachannelid;
|
|
|
|
|
// TODO(hbos): Support enum types? "RTCStatsMember<RTCDataChannelState>"?
|
|
|
|
|
RTCStatsMember<std::string> state;
|
|
|
|
|
RTCStatsMember<uint32_t> messages_sent;
|
|
|
|
|
RTCStatsMember<uint64_t> bytes_sent;
|
|
|
|
|
RTCStatsMember<uint32_t> messages_received;
|
|
|
|
|
RTCStatsMember<uint64_t> bytes_received;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// https://w3c.github.io/webrtc-stats/#candidatepair-dict*
|
2017-02-07 06:41:21 -08:00
|
|
|
// TODO(hbos): Tracking bug https://bugs.webrtc.org/7062
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCIceCandidatePairStats final : public RTCStats {
|
2016-10-11 14:54:49 -07:00
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCIceCandidatePairStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCIceCandidatePairStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
RTCIceCandidatePairStats(const RTCIceCandidatePairStats& other);
|
|
|
|
|
~RTCIceCandidatePairStats() override;
|
|
|
|
|
|
|
|
|
|
RTCStatsMember<std::string> transport_id;
|
|
|
|
|
RTCStatsMember<std::string> local_candidate_id;
|
|
|
|
|
RTCStatsMember<std::string> remote_candidate_id;
|
|
|
|
|
// TODO(hbos): Support enum types?
|
|
|
|
|
// "RTCStatsMember<RTCStatsIceCandidatePairState>"?
|
|
|
|
|
RTCStatsMember<std::string> state;
|
|
|
|
|
RTCStatsMember<uint64_t> priority;
|
|
|
|
|
RTCStatsMember<bool> nominated;
|
2017-02-07 06:41:21 -08:00
|
|
|
// TODO(hbos): Collect this the way the spec describes it. We have a value for
|
|
|
|
|
// it but it is not spec-compliant. https://bugs.webrtc.org/7062
|
2016-10-11 14:54:49 -07:00
|
|
|
RTCStatsMember<bool> writable;
|
2017-02-07 06:41:21 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7062
|
2016-10-11 14:54:49 -07:00
|
|
|
RTCStatsMember<bool> readable;
|
|
|
|
|
RTCStatsMember<uint64_t> bytes_sent;
|
|
|
|
|
RTCStatsMember<uint64_t> bytes_received;
|
2016-12-15 06:17:08 -08:00
|
|
|
RTCStatsMember<double> total_round_trip_time;
|
|
|
|
|
RTCStatsMember<double> current_round_trip_time;
|
2016-10-11 14:54:49 -07:00
|
|
|
RTCStatsMember<double> available_outgoing_bitrate;
|
2017-02-07 06:41:21 -08:00
|
|
|
// TODO(hbos): Populate this value. It is wired up and collected the same way
|
2017-02-28 06:34:47 -08:00
|
|
|
// "VideoBwe.googAvailableReceiveBandwidth" is, but that value is always
|
2017-02-07 06:41:21 -08:00
|
|
|
// undefined. https://bugs.webrtc.org/7062
|
2016-10-11 14:54:49 -07:00
|
|
|
RTCStatsMember<double> available_incoming_bitrate;
|
|
|
|
|
RTCStatsMember<uint64_t> requests_received;
|
|
|
|
|
RTCStatsMember<uint64_t> requests_sent;
|
|
|
|
|
RTCStatsMember<uint64_t> responses_received;
|
|
|
|
|
RTCStatsMember<uint64_t> responses_sent;
|
2017-02-07 06:41:21 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7062
|
2016-10-11 14:54:49 -07:00
|
|
|
RTCStatsMember<uint64_t> retransmissions_received;
|
2017-02-07 06:41:21 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7062
|
2016-10-11 14:54:49 -07:00
|
|
|
RTCStatsMember<uint64_t> retransmissions_sent;
|
2017-02-07 06:41:21 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7062
|
2016-10-11 14:54:49 -07:00
|
|
|
RTCStatsMember<uint64_t> consent_requests_received;
|
|
|
|
|
RTCStatsMember<uint64_t> consent_requests_sent;
|
2017-02-07 06:41:21 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7062
|
2016-10-11 14:54:49 -07:00
|
|
|
RTCStatsMember<uint64_t> consent_responses_received;
|
2017-02-07 06:41:21 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7062
|
2016-10-11 14:54:49 -07:00
|
|
|
RTCStatsMember<uint64_t> consent_responses_sent;
|
|
|
|
|
};
|
|
|
|
|
|
2016-10-07 02:18:47 -07:00
|
|
|
// https://w3c.github.io/webrtc-stats/#icecandidate-dict*
|
2016-10-24 09:27:10 -07:00
|
|
|
// TODO(hbos): |RTCStatsCollector| only collects candidates that are part of
|
|
|
|
|
// ice candidate pairs, but there could be candidates not paired with anything.
|
|
|
|
|
// crbug.com/632723
|
2018-02-20 16:03:18 -08:00
|
|
|
// TODO(qingsi): Add the stats of STUN binding requests (keepalives) and collect
|
|
|
|
|
// them in the new PeerConnection::GetStats.
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCIceCandidateStats : public RTCStats {
|
2016-10-07 02:18:47 -07:00
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCIceCandidateStats(const RTCIceCandidateStats& other);
|
|
|
|
|
~RTCIceCandidateStats() override;
|
|
|
|
|
|
2017-01-02 09:59:31 -08:00
|
|
|
RTCStatsMember<std::string> transport_id;
|
2017-01-02 04:46:15 -08:00
|
|
|
RTCStatsMember<bool> is_remote;
|
2017-11-21 10:49:36 -08:00
|
|
|
RTCStatsMember<std::string> network_type;
|
2016-10-07 02:18:47 -07:00
|
|
|
RTCStatsMember<std::string> ip;
|
|
|
|
|
RTCStatsMember<int32_t> port;
|
|
|
|
|
RTCStatsMember<std::string> protocol;
|
2018-09-27 14:40:08 +02:00
|
|
|
RTCStatsMember<std::string> relay_protocol;
|
2016-10-07 02:18:47 -07:00
|
|
|
// TODO(hbos): Support enum types? "RTCStatsMember<RTCIceCandidateType>"?
|
|
|
|
|
RTCStatsMember<std::string> candidate_type;
|
|
|
|
|
RTCStatsMember<int32_t> priority;
|
2016-10-24 09:27:10 -07:00
|
|
|
// TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/632723
|
2016-10-07 02:18:47 -07:00
|
|
|
RTCStatsMember<std::string> url;
|
2017-01-02 08:09:59 -08:00
|
|
|
// TODO(hbos): |deleted = true| case is not supported by |RTCStatsCollector|.
|
|
|
|
|
// crbug.com/632723
|
|
|
|
|
RTCStatsMember<bool> deleted; // = false
|
2016-10-07 02:18:47 -07:00
|
|
|
|
|
|
|
|
protected:
|
2017-01-02 04:46:15 -08:00
|
|
|
RTCIceCandidateStats(const std::string& id,
|
|
|
|
|
int64_t timestamp_us,
|
|
|
|
|
bool is_remote);
|
|
|
|
|
RTCIceCandidateStats(std::string&& id, int64_t timestamp_us, bool is_remote);
|
2016-10-07 02:18:47 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// In the spec both local and remote varieties are of type RTCIceCandidateStats.
|
|
|
|
|
// But here we define them as subclasses of |RTCIceCandidateStats| because the
|
|
|
|
|
// |kType| need to be different ("RTCStatsType type") in the local/remote case.
|
|
|
|
|
// https://w3c.github.io/webrtc-stats/#rtcstatstype-str*
|
2018-03-20 13:24:20 +01:00
|
|
|
// This forces us to have to override copy() and type().
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCLocalIceCandidateStats final : public RTCIceCandidateStats {
|
2016-10-07 02:18:47 -07:00
|
|
|
public:
|
|
|
|
|
static const char kType[];
|
|
|
|
|
RTCLocalIceCandidateStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCLocalIceCandidateStats(std::string&& id, int64_t timestamp_us);
|
2018-03-20 13:24:20 +01:00
|
|
|
std::unique_ptr<RTCStats> copy() const override;
|
2016-10-07 02:18:47 -07:00
|
|
|
const char* type() const override;
|
|
|
|
|
};
|
|
|
|
|
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCRemoteIceCandidateStats final
|
|
|
|
|
: public RTCIceCandidateStats {
|
2016-10-07 02:18:47 -07:00
|
|
|
public:
|
|
|
|
|
static const char kType[];
|
|
|
|
|
RTCRemoteIceCandidateStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCRemoteIceCandidateStats(std::string&& id, int64_t timestamp_us);
|
2018-03-20 13:24:20 +01:00
|
|
|
std::unique_ptr<RTCStats> copy() const override;
|
2016-10-07 02:18:47 -07:00
|
|
|
const char* type() const override;
|
|
|
|
|
};
|
|
|
|
|
|
2016-11-08 06:29:22 -08:00
|
|
|
// https://w3c.github.io/webrtc-stats/#msstats-dict*
|
2016-11-23 02:32:06 -08:00
|
|
|
// TODO(hbos): Tracking bug crbug.com/660827
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCMediaStreamStats final : public RTCStats {
|
2016-11-08 06:29:22 -08:00
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCMediaStreamStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCMediaStreamStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
RTCMediaStreamStats(const RTCMediaStreamStats& other);
|
|
|
|
|
~RTCMediaStreamStats() override;
|
|
|
|
|
|
|
|
|
|
RTCStatsMember<std::string> stream_identifier;
|
|
|
|
|
RTCStatsMember<std::vector<std::string>> track_ids;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// https://w3c.github.io/webrtc-stats/#mststats-dict*
|
2016-11-23 02:32:06 -08:00
|
|
|
// TODO(hbos): Tracking bug crbug.com/659137
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCMediaStreamTrackStats final : public RTCStats {
|
2016-11-08 06:29:22 -08:00
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
2017-01-17 02:53:23 -08:00
|
|
|
RTCMediaStreamTrackStats(const std::string& id,
|
|
|
|
|
int64_t timestamp_us,
|
|
|
|
|
const char* kind);
|
|
|
|
|
RTCMediaStreamTrackStats(std::string&& id,
|
|
|
|
|
int64_t timestamp_us,
|
|
|
|
|
const char* kind);
|
2016-11-08 06:29:22 -08:00
|
|
|
RTCMediaStreamTrackStats(const RTCMediaStreamTrackStats& other);
|
|
|
|
|
~RTCMediaStreamTrackStats() override;
|
|
|
|
|
|
|
|
|
|
RTCStatsMember<std::string> track_identifier;
|
2019-05-22 15:49:42 +02:00
|
|
|
RTCStatsMember<std::string> media_source_id;
|
2016-11-08 06:29:22 -08:00
|
|
|
RTCStatsMember<bool> remote_source;
|
|
|
|
|
RTCStatsMember<bool> ended;
|
|
|
|
|
// TODO(hbos): |RTCStatsCollector| does not return stats for detached tracks.
|
|
|
|
|
// crbug.com/659137
|
|
|
|
|
RTCStatsMember<bool> detached;
|
2017-01-17 02:53:23 -08:00
|
|
|
// See |RTCMediaStreamTrackKind| for valid values.
|
|
|
|
|
RTCStatsMember<std::string> kind;
|
2017-10-02 12:00:34 +02:00
|
|
|
// TODO(gustaf): Implement jitter_buffer_delay for video (currently
|
|
|
|
|
// implemented for audio only).
|
|
|
|
|
// https://crbug.com/webrtc/8318
|
|
|
|
|
RTCStatsMember<double> jitter_buffer_delay;
|
2019-01-15 15:46:29 +01:00
|
|
|
RTCStatsMember<uint64_t> jitter_buffer_emitted_count;
|
2016-11-08 06:29:22 -08:00
|
|
|
// Video-only members
|
|
|
|
|
RTCStatsMember<uint32_t> frame_width;
|
|
|
|
|
RTCStatsMember<uint32_t> frame_height;
|
|
|
|
|
// TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137
|
|
|
|
|
RTCStatsMember<double> frames_per_second;
|
|
|
|
|
RTCStatsMember<uint32_t> frames_sent;
|
2018-02-28 16:35:03 +01:00
|
|
|
RTCStatsMember<uint32_t> huge_frames_sent;
|
2016-11-08 06:29:22 -08:00
|
|
|
RTCStatsMember<uint32_t> frames_received;
|
|
|
|
|
RTCStatsMember<uint32_t> frames_decoded;
|
|
|
|
|
RTCStatsMember<uint32_t> frames_dropped;
|
|
|
|
|
// TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137
|
|
|
|
|
RTCStatsMember<uint32_t> frames_corrupted;
|
|
|
|
|
// TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137
|
|
|
|
|
RTCStatsMember<uint32_t> partial_frames_lost;
|
|
|
|
|
// TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/659137
|
|
|
|
|
RTCStatsMember<uint32_t> full_frames_lost;
|
|
|
|
|
// Audio-only members
|
[getStats] Implement "media-source" audio levels, fixing Chrome bug.
Implements RTCAudioSourceStats members:
- audioLevel
- totalAudioEnergy
- totalSamplesDuration
In this CL description these are collectively referred to as the audio
levels.
The audio levels are removed from sending "track" stats (in Chrome,
these are now reported as undefined instead of 0).
Background:
For sending tracks, audio levels were always reported as 0 in Chrome
(https://crbug.com/736403), while audio levels were correctly reported
for receiving tracks. This problem affected the standard getStats() but
not the legacy getStats(), blocking some people from migrating. This
was likely not a problem in native third_party/webrtc code because the
delivery of audio frames from device to send-stream uses a different
code path outside of chromium.
A recent PR (https://github.com/w3c/webrtc-stats/pull/451) moved the
send-side audio levels to the RTCAudioSourceStats, while keeping the
receive-side audio levels on the "track" stats. This allows an
implementation to report the audio levels even if samples are not sent
onto the network (such as if an ICE connection has not been established
yet), reflecting some of the current implementation.
Changes:
1. Audio levels are added to RTCAudioSourceStats. Send-side audio
"track" stats are left undefined. Receive-side audio "track" stats
are not changed in this CL and continue to work.
2. Audio level computation is moved from the AudioState and
AudioTransportImpl to the AudioSendStream. This is because a) the
AudioTransportImpl::RecordedDataIsAvailable() code path is not
exercised in chromium, and b) audio levels should, per-spec, not be
calculated on a per-call basis, for which the AudioState is defined.
3. The audio level computation is now performed in
AudioSendStream::SendAudioData(), a code path used by both native
and chromium code.
4. Comments are added to document behavior of existing code, such as
AudioLevel and AudioSendStream::SendAudioData().
Note:
In this CL, just like before this CL, audio level is only calculated
after an AudioSendStream has been created. This means that before an
O/A negotiation, audio levels are unavailable.
According to spec, if we have an audio source, we should have audio
levels. An immediate solution to this would have been to calculate the
audio level at pc/rtp_sender.cc. The problem is that the
LocalAudioSinkAdapter::OnData() code path, while exercised in chromium,
is not exercised in native code. The issue of calculating audio levels
on a per-source bases rather than on a per-send stream basis is left to
https://crbug.com/webrtc/10771, an existing "media-source" bug.
This CL can be verified manually in Chrome at:
https://codepen.io/anon/pen/vqRGyq
Bug: chromium:736403, webrtc:10771
Change-Id: I8036cd9984f3b187c3177470a8c0d6670a201a5a
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/143789
Reviewed-by: Oskar Sundbom <ossu@webrtc.org>
Reviewed-by: Stefan Holmer <stefan@webrtc.org>
Commit-Queue: Henrik Boström <hbos@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#28480}
2019-07-03 17:11:10 +02:00
|
|
|
RTCStatsMember<double> audio_level; // Receive-only
|
|
|
|
|
RTCStatsMember<double> total_audio_energy; // Receive-only
|
2016-11-08 06:29:22 -08:00
|
|
|
RTCStatsMember<double> echo_return_loss;
|
|
|
|
|
RTCStatsMember<double> echo_return_loss_enhancement;
|
2017-08-24 17:15:13 -07:00
|
|
|
RTCStatsMember<uint64_t> total_samples_received;
|
[getStats] Implement "media-source" audio levels, fixing Chrome bug.
Implements RTCAudioSourceStats members:
- audioLevel
- totalAudioEnergy
- totalSamplesDuration
In this CL description these are collectively referred to as the audio
levels.
The audio levels are removed from sending "track" stats (in Chrome,
these are now reported as undefined instead of 0).
Background:
For sending tracks, audio levels were always reported as 0 in Chrome
(https://crbug.com/736403), while audio levels were correctly reported
for receiving tracks. This problem affected the standard getStats() but
not the legacy getStats(), blocking some people from migrating. This
was likely not a problem in native third_party/webrtc code because the
delivery of audio frames from device to send-stream uses a different
code path outside of chromium.
A recent PR (https://github.com/w3c/webrtc-stats/pull/451) moved the
send-side audio levels to the RTCAudioSourceStats, while keeping the
receive-side audio levels on the "track" stats. This allows an
implementation to report the audio levels even if samples are not sent
onto the network (such as if an ICE connection has not been established
yet), reflecting some of the current implementation.
Changes:
1. Audio levels are added to RTCAudioSourceStats. Send-side audio
"track" stats are left undefined. Receive-side audio "track" stats
are not changed in this CL and continue to work.
2. Audio level computation is moved from the AudioState and
AudioTransportImpl to the AudioSendStream. This is because a) the
AudioTransportImpl::RecordedDataIsAvailable() code path is not
exercised in chromium, and b) audio levels should, per-spec, not be
calculated on a per-call basis, for which the AudioState is defined.
3. The audio level computation is now performed in
AudioSendStream::SendAudioData(), a code path used by both native
and chromium code.
4. Comments are added to document behavior of existing code, such as
AudioLevel and AudioSendStream::SendAudioData().
Note:
In this CL, just like before this CL, audio level is only calculated
after an AudioSendStream has been created. This means that before an
O/A negotiation, audio levels are unavailable.
According to spec, if we have an audio source, we should have audio
levels. An immediate solution to this would have been to calculate the
audio level at pc/rtp_sender.cc. The problem is that the
LocalAudioSinkAdapter::OnData() code path, while exercised in chromium,
is not exercised in native code. The issue of calculating audio levels
on a per-source bases rather than on a per-send stream basis is left to
https://crbug.com/webrtc/10771, an existing "media-source" bug.
This CL can be verified manually in Chrome at:
https://codepen.io/anon/pen/vqRGyq
Bug: chromium:736403, webrtc:10771
Change-Id: I8036cd9984f3b187c3177470a8c0d6670a201a5a
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/143789
Reviewed-by: Oskar Sundbom <ossu@webrtc.org>
Reviewed-by: Stefan Holmer <stefan@webrtc.org>
Commit-Queue: Henrik Boström <hbos@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#28480}
2019-07-03 17:11:10 +02:00
|
|
|
RTCStatsMember<double> total_samples_duration; // Receive-only
|
2017-08-24 17:15:13 -07:00
|
|
|
RTCStatsMember<uint64_t> concealed_samples;
|
2019-04-30 09:45:21 +02:00
|
|
|
RTCStatsMember<uint64_t> silent_concealed_samples;
|
2017-09-18 09:28:20 +02:00
|
|
|
RTCStatsMember<uint64_t> concealment_events;
|
2019-04-30 09:45:21 +02:00
|
|
|
RTCStatsMember<uint64_t> inserted_samples_for_deceleration;
|
|
|
|
|
RTCStatsMember<uint64_t> removed_samples_for_acceleration;
|
2018-11-22 17:21:10 +01:00
|
|
|
// Non-standard audio-only member
|
2018-11-27 12:52:16 +01:00
|
|
|
// TODO(kuddai): Add description to standard. crbug.com/webrtc/10042
|
2018-11-22 17:21:10 +01:00
|
|
|
RTCNonStandardStatsMember<uint64_t> jitter_buffer_flushes;
|
2018-11-27 12:52:16 +01:00
|
|
|
RTCNonStandardStatsMember<uint64_t> delayed_packet_outage_samples;
|
2019-03-06 09:18:40 +01:00
|
|
|
RTCNonStandardStatsMember<double> relative_packet_arrival_delay;
|
2019-04-29 17:00:46 +02:00
|
|
|
// TODO(henrik.lundin): Add description of the interruption metrics at
|
|
|
|
|
// https://github.com/henbos/webrtc-provisional-stats/issues/17
|
|
|
|
|
RTCNonStandardStatsMember<uint32_t> interruption_count;
|
|
|
|
|
RTCNonStandardStatsMember<double> total_interruption_duration;
|
2019-01-31 16:45:42 +01:00
|
|
|
// Non-standard video-only members.
|
|
|
|
|
// https://henbos.github.io/webrtc-provisional-stats/#RTCVideoReceiverStats-dict*
|
|
|
|
|
RTCNonStandardStatsMember<uint32_t> freeze_count;
|
|
|
|
|
RTCNonStandardStatsMember<uint32_t> pause_count;
|
|
|
|
|
RTCNonStandardStatsMember<double> total_freezes_duration;
|
|
|
|
|
RTCNonStandardStatsMember<double> total_pauses_duration;
|
|
|
|
|
RTCNonStandardStatsMember<double> total_frames_duration;
|
|
|
|
|
RTCNonStandardStatsMember<double> sum_squared_frame_durations;
|
2016-11-08 06:29:22 -08:00
|
|
|
};
|
|
|
|
|
|
2016-10-03 14:16:56 -07:00
|
|
|
// https://w3c.github.io/webrtc-stats/#pcstats-dict*
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCPeerConnectionStats final : public RTCStats {
|
2016-08-30 14:04:35 -07:00
|
|
|
public:
|
2016-10-06 02:06:10 -07:00
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
2016-08-31 07:57:36 -07:00
|
|
|
RTCPeerConnectionStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCPeerConnectionStats(std::string&& id, int64_t timestamp_us);
|
2016-10-06 02:06:10 -07:00
|
|
|
RTCPeerConnectionStats(const RTCPeerConnectionStats& other);
|
|
|
|
|
~RTCPeerConnectionStats() override;
|
2016-08-30 14:04:35 -07:00
|
|
|
|
|
|
|
|
RTCStatsMember<uint32_t> data_channels_opened;
|
|
|
|
|
RTCStatsMember<uint32_t> data_channels_closed;
|
|
|
|
|
};
|
|
|
|
|
|
2016-11-01 01:50:46 -07:00
|
|
|
// https://w3c.github.io/webrtc-stats/#streamstats-dict*
|
2016-11-23 02:32:06 -08:00
|
|
|
// TODO(hbos): Tracking bug crbug.com/657854
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCRTPStreamStats : public RTCStats {
|
2016-11-01 01:50:46 -07:00
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCRTPStreamStats(const RTCRTPStreamStats& other);
|
|
|
|
|
~RTCRTPStreamStats() override;
|
|
|
|
|
|
2017-02-07 06:28:11 -08:00
|
|
|
RTCStatsMember<uint32_t> ssrc;
|
2016-11-01 01:50:46 -07:00
|
|
|
// TODO(hbos): When the remote case is supported |RTCStatsCollector| needs to
|
|
|
|
|
// set this. crbug.com/657855, 657856
|
|
|
|
|
RTCStatsMember<std::string> associate_stats_id;
|
|
|
|
|
// TODO(hbos): Remote case not supported by |RTCStatsCollector|.
|
|
|
|
|
// crbug.com/657855, 657856
|
|
|
|
|
RTCStatsMember<bool> is_remote; // = false
|
2018-08-28 14:55:03 +02:00
|
|
|
RTCStatsMember<std::string> media_type; // renamed to kind.
|
|
|
|
|
RTCStatsMember<std::string> kind;
|
2017-01-27 06:35:16 -08:00
|
|
|
RTCStatsMember<std::string> track_id;
|
2016-11-01 01:50:46 -07:00
|
|
|
RTCStatsMember<std::string> transport_id;
|
|
|
|
|
RTCStatsMember<std::string> codec_id;
|
|
|
|
|
// FIR and PLI counts are only defined for |media_type == "video"|.
|
|
|
|
|
RTCStatsMember<uint32_t> fir_count;
|
|
|
|
|
RTCStatsMember<uint32_t> pli_count;
|
|
|
|
|
// TODO(hbos): NACK count should be collected by |RTCStatsCollector| for both
|
|
|
|
|
// audio and video but is only defined in the "video" case. crbug.com/657856
|
|
|
|
|
RTCStatsMember<uint32_t> nack_count;
|
|
|
|
|
// TODO(hbos): Not collected by |RTCStatsCollector|. crbug.com/657854
|
|
|
|
|
// SLI count is only defined for |media_type == "video"|.
|
|
|
|
|
RTCStatsMember<uint32_t> sli_count;
|
2017-01-02 08:35:13 -08:00
|
|
|
RTCStatsMember<uint64_t> qp_sum;
|
2016-11-01 01:50:46 -07:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
RTCRTPStreamStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCRTPStreamStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
};
|
|
|
|
|
|
2016-11-01 03:00:17 -07:00
|
|
|
// https://w3c.github.io/webrtc-stats/#inboundrtpstats-dict*
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Support the remote case |is_remote = true|.
|
|
|
|
|
// https://bugs.webrtc.org/7065
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCInboundRTPStreamStats final : public RTCRTPStreamStats {
|
2016-11-01 03:00:17 -07:00
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCInboundRTPStreamStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCInboundRTPStreamStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
RTCInboundRTPStreamStats(const RTCInboundRTPStreamStats& other);
|
|
|
|
|
~RTCInboundRTPStreamStats() override;
|
|
|
|
|
|
|
|
|
|
RTCStatsMember<uint32_t> packets_received;
|
2019-04-30 09:45:21 +02:00
|
|
|
RTCStatsMember<uint64_t> fec_packets_received;
|
|
|
|
|
RTCStatsMember<uint64_t> fec_packets_discarded;
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<uint64_t> bytes_received;
|
2017-12-13 12:26:04 +01:00
|
|
|
RTCStatsMember<int32_t> packets_lost; // Signed per RFC 3550
|
2019-04-15 17:32:00 +02:00
|
|
|
RTCStatsMember<double> last_packet_received_timestamp;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value for both "audio" and "video",
|
|
|
|
|
// currently not collected for "video". https://bugs.webrtc.org/7065
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<double> jitter;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7065
|
|
|
|
|
RTCStatsMember<double> round_trip_time;
|
|
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7065
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<uint32_t> packets_discarded;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7065
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<uint32_t> packets_repaired;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7065
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<uint32_t> burst_packets_lost;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7065
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<uint32_t> burst_packets_discarded;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7065
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<uint32_t> burst_loss_count;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7065
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<uint32_t> burst_discard_count;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7065
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<double> burst_loss_rate;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7065
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<double> burst_discard_rate;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7065
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<double> gap_loss_rate;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7065
|
2016-11-01 03:00:17 -07:00
|
|
|
RTCStatsMember<double> gap_discard_rate;
|
2017-01-02 08:35:13 -08:00
|
|
|
RTCStatsMember<uint32_t> frames_decoded;
|
2019-06-27 14:29:34 +02:00
|
|
|
RTCStatsMember<uint32_t> key_frames_decoded;
|
2019-07-01 10:07:50 +02:00
|
|
|
RTCStatsMember<double> total_decode_time;
|
2019-04-09 13:59:31 +02:00
|
|
|
// https://henbos.github.io/webrtc-provisional-stats/#dom-rtcinboundrtpstreamstats-contenttype
|
|
|
|
|
RTCStatsMember<std::string> content_type;
|
2016-11-01 03:00:17 -07:00
|
|
|
};
|
|
|
|
|
|
2016-11-01 01:50:46 -07:00
|
|
|
// https://w3c.github.io/webrtc-stats/#outboundrtpstats-dict*
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Support the remote case |is_remote = true|.
|
|
|
|
|
// https://bugs.webrtc.org/7066
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCOutboundRTPStreamStats final : public RTCRTPStreamStats {
|
2016-11-01 01:50:46 -07:00
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCOutboundRTPStreamStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCOutboundRTPStreamStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
RTCOutboundRTPStreamStats(const RTCOutboundRTPStreamStats& other);
|
|
|
|
|
~RTCOutboundRTPStreamStats() override;
|
|
|
|
|
|
2019-05-22 15:49:42 +02:00
|
|
|
RTCStatsMember<std::string> media_source_id;
|
2016-11-01 01:50:46 -07:00
|
|
|
RTCStatsMember<uint32_t> packets_sent;
|
2019-04-17 13:51:53 +02:00
|
|
|
RTCStatsMember<uint64_t> retransmitted_packets_sent;
|
2016-11-01 01:50:46 -07:00
|
|
|
RTCStatsMember<uint64_t> bytes_sent;
|
2019-04-17 13:51:53 +02:00
|
|
|
RTCStatsMember<uint64_t> retransmitted_bytes_sent;
|
2017-03-01 01:02:45 -08:00
|
|
|
// TODO(hbos): Collect and populate this value. https://bugs.webrtc.org/7066
|
2016-11-01 01:50:46 -07:00
|
|
|
RTCStatsMember<double> target_bitrate;
|
2017-01-02 08:35:13 -08:00
|
|
|
RTCStatsMember<uint32_t> frames_encoded;
|
2019-06-27 14:29:34 +02:00
|
|
|
RTCStatsMember<uint32_t> key_frames_encoded;
|
2019-04-08 16:14:23 +02:00
|
|
|
RTCStatsMember<double> total_encode_time;
|
2019-05-20 15:15:38 +02:00
|
|
|
RTCStatsMember<uint64_t> total_encoded_bytes_target;
|
2019-05-16 18:38:20 +02:00
|
|
|
// TODO(https://crbug.com/webrtc/10635): This is only implemented for video;
|
|
|
|
|
// implement it for audio as well.
|
|
|
|
|
RTCStatsMember<double> total_packet_send_delay;
|
2019-05-28 17:42:38 +02:00
|
|
|
// Enum type RTCQualityLimitationReason
|
|
|
|
|
// TODO(https://crbug.com/webrtc/10686): Also expose
|
|
|
|
|
// qualityLimitationDurations. Requires RTCStatsMember support for
|
|
|
|
|
// "record<DOMString, double>", see https://crbug.com/webrtc/10685.
|
|
|
|
|
RTCStatsMember<std::string> quality_limitation_reason;
|
2019-04-09 13:59:31 +02:00
|
|
|
// https://henbos.github.io/webrtc-provisional-stats/#dom-rtcoutboundrtpstreamstats-contenttype
|
|
|
|
|
RTCStatsMember<std::string> content_type;
|
2016-11-01 01:50:46 -07:00
|
|
|
};
|
|
|
|
|
|
Implement RTCRemoteInboundRtpStreamStats for both audio and video.
This implements the essentials of RTCRemoteInboundRtpStreamStats. This
includes:
- ssrc
- transportId
- codecId
- packetsLost
- jitter
- localId
- roundTripTime
https://w3c.github.io/webrtc-stats/#remoteinboundrtpstats-dict*
The following members are not implemented because they require more
work...
- From RTCReceivedRtpStreamStats: packetsReceived, packetsDiscarded,
packetsRepaired, burstPacketsLost, burstPacketsDiscarded,
burstLossCount, burstDiscardCount, burstLossRate, burstDiscardRate,
gapLossRate and gapDiscardRate.
- From RTCRemoteInboundRtpStreamStats: fractionLost.
Bug: webrtc:10455, webrtc:10456
Change-Id: If2ab0da7105d8c93bba58e14aa93bd22ffe57f1d
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/138067
Commit-Queue: Henrik Boström <hbos@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#28073}
2019-05-27 13:40:25 +02:00
|
|
|
// TODO(https://crbug.com/webrtc/10671): Refactor the stats dictionaries to have
|
|
|
|
|
// the same hierarchy as in the spec; implement RTCReceivedRtpStreamStats.
|
|
|
|
|
// Several metrics are shared between "outbound-rtp", "remote-inbound-rtp",
|
|
|
|
|
// "inbound-rtp" and "remote-outbound-rtp". In the spec there is a hierarchy of
|
|
|
|
|
// dictionaries that minimizes defining the same metrics in multiple places.
|
|
|
|
|
// From JavaScript this hierarchy is not observable and the spec's hierarchy is
|
|
|
|
|
// purely editorial. In C++ non-final classes in the hierarchy could be used to
|
|
|
|
|
// refer to different stats objects within the hierarchy.
|
|
|
|
|
// https://w3c.github.io/webrtc-stats/#remoteinboundrtpstats-dict*
|
|
|
|
|
class RTC_EXPORT RTCRemoteInboundRtpStreamStats final : public RTCStats {
|
|
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCRemoteInboundRtpStreamStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCRemoteInboundRtpStreamStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
RTCRemoteInboundRtpStreamStats(const RTCRemoteInboundRtpStreamStats& other);
|
|
|
|
|
~RTCRemoteInboundRtpStreamStats() override;
|
|
|
|
|
|
|
|
|
|
// In the spec RTCRemoteInboundRtpStreamStats inherits from RTCRtpStreamStats
|
|
|
|
|
// and RTCReceivedRtpStreamStats. The members here are listed based on where
|
|
|
|
|
// they are defined in the spec.
|
|
|
|
|
// RTCRtpStreamStats
|
|
|
|
|
RTCStatsMember<uint32_t> ssrc;
|
|
|
|
|
RTCStatsMember<std::string> kind;
|
|
|
|
|
RTCStatsMember<std::string> transport_id;
|
|
|
|
|
RTCStatsMember<std::string> codec_id;
|
|
|
|
|
// RTCReceivedRtpStreamStats
|
|
|
|
|
RTCStatsMember<int32_t> packets_lost;
|
|
|
|
|
RTCStatsMember<double> jitter;
|
|
|
|
|
// TODO(hbos): The following RTCReceivedRtpStreamStats metrics should also be
|
|
|
|
|
// implemented: packetsReceived, packetsDiscarded, packetsRepaired,
|
|
|
|
|
// burstPacketsLost, burstPacketsDiscarded, burstLossCount, burstDiscardCount,
|
|
|
|
|
// burstLossRate, burstDiscardRate, gapLossRate and gapDiscardRate.
|
|
|
|
|
// RTCRemoteInboundRtpStreamStats
|
|
|
|
|
RTCStatsMember<std::string> local_id;
|
|
|
|
|
RTCStatsMember<double> round_trip_time;
|
|
|
|
|
// TODO(hbos): The following RTCRemoteInboundRtpStreamStats metric should also
|
|
|
|
|
// be implemented: fractionLost.
|
|
|
|
|
};
|
|
|
|
|
|
2019-05-22 15:49:42 +02:00
|
|
|
// https://w3c.github.io/webrtc-stats/#dom-rtcmediasourcestats
|
|
|
|
|
class RTC_EXPORT RTCMediaSourceStats : public RTCStats {
|
|
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCMediaSourceStats(const RTCMediaSourceStats& other);
|
|
|
|
|
~RTCMediaSourceStats() override;
|
|
|
|
|
|
|
|
|
|
RTCStatsMember<std::string> track_identifier;
|
|
|
|
|
RTCStatsMember<std::string> kind;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
RTCMediaSourceStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCMediaSourceStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// https://w3c.github.io/webrtc-stats/#dom-rtcaudiosourcestats
|
|
|
|
|
class RTC_EXPORT RTCAudioSourceStats final : public RTCMediaSourceStats {
|
|
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCAudioSourceStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCAudioSourceStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
RTCAudioSourceStats(const RTCAudioSourceStats& other);
|
|
|
|
|
~RTCAudioSourceStats() override;
|
[getStats] Implement "media-source" audio levels, fixing Chrome bug.
Implements RTCAudioSourceStats members:
- audioLevel
- totalAudioEnergy
- totalSamplesDuration
In this CL description these are collectively referred to as the audio
levels.
The audio levels are removed from sending "track" stats (in Chrome,
these are now reported as undefined instead of 0).
Background:
For sending tracks, audio levels were always reported as 0 in Chrome
(https://crbug.com/736403), while audio levels were correctly reported
for receiving tracks. This problem affected the standard getStats() but
not the legacy getStats(), blocking some people from migrating. This
was likely not a problem in native third_party/webrtc code because the
delivery of audio frames from device to send-stream uses a different
code path outside of chromium.
A recent PR (https://github.com/w3c/webrtc-stats/pull/451) moved the
send-side audio levels to the RTCAudioSourceStats, while keeping the
receive-side audio levels on the "track" stats. This allows an
implementation to report the audio levels even if samples are not sent
onto the network (such as if an ICE connection has not been established
yet), reflecting some of the current implementation.
Changes:
1. Audio levels are added to RTCAudioSourceStats. Send-side audio
"track" stats are left undefined. Receive-side audio "track" stats
are not changed in this CL and continue to work.
2. Audio level computation is moved from the AudioState and
AudioTransportImpl to the AudioSendStream. This is because a) the
AudioTransportImpl::RecordedDataIsAvailable() code path is not
exercised in chromium, and b) audio levels should, per-spec, not be
calculated on a per-call basis, for which the AudioState is defined.
3. The audio level computation is now performed in
AudioSendStream::SendAudioData(), a code path used by both native
and chromium code.
4. Comments are added to document behavior of existing code, such as
AudioLevel and AudioSendStream::SendAudioData().
Note:
In this CL, just like before this CL, audio level is only calculated
after an AudioSendStream has been created. This means that before an
O/A negotiation, audio levels are unavailable.
According to spec, if we have an audio source, we should have audio
levels. An immediate solution to this would have been to calculate the
audio level at pc/rtp_sender.cc. The problem is that the
LocalAudioSinkAdapter::OnData() code path, while exercised in chromium,
is not exercised in native code. The issue of calculating audio levels
on a per-source bases rather than on a per-send stream basis is left to
https://crbug.com/webrtc/10771, an existing "media-source" bug.
This CL can be verified manually in Chrome at:
https://codepen.io/anon/pen/vqRGyq
Bug: chromium:736403, webrtc:10771
Change-Id: I8036cd9984f3b187c3177470a8c0d6670a201a5a
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/143789
Reviewed-by: Oskar Sundbom <ossu@webrtc.org>
Reviewed-by: Stefan Holmer <stefan@webrtc.org>
Commit-Queue: Henrik Boström <hbos@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#28480}
2019-07-03 17:11:10 +02:00
|
|
|
|
|
|
|
|
RTCStatsMember<double> audio_level;
|
|
|
|
|
RTCStatsMember<double> total_audio_energy;
|
|
|
|
|
RTCStatsMember<double> total_samples_duration;
|
2019-05-22 15:49:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// https://w3c.github.io/webrtc-stats/#dom-rtcvideosourcestats
|
|
|
|
|
class RTC_EXPORT RTCVideoSourceStats final : public RTCMediaSourceStats {
|
|
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCVideoSourceStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCVideoSourceStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
RTCVideoSourceStats(const RTCVideoSourceStats& other);
|
|
|
|
|
~RTCVideoSourceStats() override;
|
|
|
|
|
|
|
|
|
|
RTCStatsMember<uint32_t> width;
|
|
|
|
|
RTCStatsMember<uint32_t> height;
|
|
|
|
|
// TODO(hbos): Implement this metric.
|
|
|
|
|
RTCStatsMember<uint32_t> frames;
|
|
|
|
|
RTCStatsMember<uint32_t> frames_per_second;
|
|
|
|
|
};
|
|
|
|
|
|
2016-10-24 04:00:05 -07:00
|
|
|
// https://w3c.github.io/webrtc-stats/#transportstats-dict*
|
2018-10-16 14:13:50 +02:00
|
|
|
class RTC_EXPORT RTCTransportStats final : public RTCStats {
|
2016-10-24 04:00:05 -07:00
|
|
|
public:
|
|
|
|
|
WEBRTC_RTCSTATS_DECL();
|
|
|
|
|
|
|
|
|
|
RTCTransportStats(const std::string& id, int64_t timestamp_us);
|
|
|
|
|
RTCTransportStats(std::string&& id, int64_t timestamp_us);
|
|
|
|
|
RTCTransportStats(const RTCTransportStats& other);
|
|
|
|
|
~RTCTransportStats() override;
|
|
|
|
|
|
|
|
|
|
RTCStatsMember<uint64_t> bytes_sent;
|
|
|
|
|
RTCStatsMember<uint64_t> bytes_received;
|
|
|
|
|
RTCStatsMember<std::string> rtcp_transport_stats_id;
|
2017-01-16 07:38:02 -08:00
|
|
|
// TODO(hbos): Support enum types? "RTCStatsMember<RTCDtlsTransportState>"?
|
|
|
|
|
RTCStatsMember<std::string> dtls_state;
|
2016-10-24 04:00:05 -07:00
|
|
|
RTCStatsMember<std::string> selected_candidate_pair_id;
|
|
|
|
|
RTCStatsMember<std::string> local_certificate_id;
|
|
|
|
|
RTCStatsMember<std::string> remote_certificate_id;
|
|
|
|
|
};
|
|
|
|
|
|
2016-08-30 14:04:35 -07:00
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // API_STATS_RTCSTATS_OBJECTS_H_
|