Package com.twilio.video
Class BaseTrackStats
- java.lang.Object
-
- com.twilio.video.BaseTrackStats
-
- Direct Known Subclasses:
LocalTrackStats
,RemoteTrackStats
public abstract class BaseTrackStats extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
codec
Name of codec used for this trackint
packetsLost
Total number of RTP packets lost for this SSRC since the beginning of the receptionjava.lang.String
ssrc
The SSRC identifier of the sourcedouble
timestamp
Unix timestamp in millisecondsjava.lang.String
trackSid
Track server identifier
-
-
-
Field Detail
-
trackSid
@NonNull public final java.lang.String trackSid
Track server identifier
-
packetsLost
public final int packetsLost
Total number of RTP packets lost for this SSRC since the beginning of the reception
-
codec
@NonNull public final java.lang.String codec
Name of codec used for this track
-
ssrc
@NonNull public final java.lang.String ssrc
The SSRC identifier of the source
-
timestamp
public final double timestamp
Unix timestamp in milliseconds
-
-