RtcInboundRtpStreamStats class

Statistics for an inbound RTP stream that is currently received with RTCPeerConnection object.

Inheritance

Constructors

RtcInboundRtpStreamStats(String? remoteId, int? bytesReceived, int? packetsReceived, double? totalDecodeTime, int? jitterBufferEmittedCount, RtcInboundRtpStreamMediaType? mediaType)

Properties

bytesReceived int?
Total number of bytes received for this SSRC.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
jitter int?
Packet jitter measured in seconds for this SSRC.
getter/setter pair
jitterBufferEmittedCount int?
Total number of audio samples or video frames that have come out of the jitter buffer (increasing jitterBufferDelay).
getter/setter pair
mediaType RtcInboundRtpStreamMediaType?
Fields which should be in these `RtcStats` based on mediaType.
getter/setter pair
packetsLost int?
Total number of RTP data packets for this SSRC that have been lost since the beginning of reception.
getter/setter pair
packetsReceived int?
Total number of RTP data packets received for this SSRC.
getter/setter pair
remoteId String?
ID of the stats object representing the receiving track.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
totalDecodeTime double?
Total number of seconds that have been spent decoding the framesDecoded frames of the stream.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromFFI(RtcStatsType_RtcInboundRtpStreamStats stats) RtcInboundRtpStreamStats
Creates RtcInboundRtpStreamStats basing on the ffi.RtcStatsType_RtcInboundRtpStreamStats received from the native side.
override
fromMap(dynamic stats) RtcInboundRtpStreamStats
Creates RtcInboundRtpStreamStats basing on the Map received from the native side.
override