diff --git a/webrtc/RTCPeerConnection-mandatory-getStats.https.html b/webrtc/RTCPeerConnection-mandatory-getStats.https.html index f80fa5fe1f465c..66f2e6c5a47878 100644 --- a/webrtc/RTCPeerConnection-mandatory-getStats.https.html +++ b/webrtc/RTCPeerConnection-mandatory-getStats.https.html @@ -23,18 +23,18 @@ "packetsReceived", "packetsLost", "jitter", - "packetsDiscarded", "framesDropped" ], RTCInboundRtpStreamStats: [ - "receiverId", + "trackIdentifier", "remoteId", "framesDecoded", "nackCount", "framesReceived", "bytesReceived", "totalAudioEnergy", - "totalSamplesDuration" + "totalSamplesDuration", + "packetsDiscarded" ], RTCRemoteInboundRtpStreamStats: [ "localId", @@ -45,7 +45,6 @@ "bytesSent" ], RTCOutboundRtpStreamStats: [ - "senderId", "remoteId", "framesEncoded", "nackCount", @@ -82,17 +81,6 @@ "height", "framesPerSecond" ], - RTCMediaHandlerStats: [ - "trackIdentifier", - ], - RTCAudioHandlerStats: [ - ], - RTCVideoHandlerStats: [ - ], - RTCVideoSenderStats: [ - ], - RTCVideoReceiverStats: [ - ], RTCCodecStats: [ "payloadType", /* codecType is part of MTI but is not systematically set @@ -179,16 +167,8 @@ // From https://w3c.github.io/webrtc-stats/webrtc-stats.html (webidl) const parents = { - RTCVideoHandlerStats: "RTCMediaHandlerStats", - RTCVideoSenderStats: "RTCVideoHandlerStats", RTCVideoSourceStats: "RTCMediaSourceStats", - RTCSenderVideoTrackAttachmentStats: "RTCVideoSenderStats", - RTCVideoReceiverStats: "RTCVideoHandlerStats", - RTCAudioHandlerStats: "RTCMediaHandlerStats", - RTCAudioSenderStats: "RTCAudioHandlerStats", RTCAudioSourceStats: "RTCMediaSourceStats", - RTCSenderAudioTrackAttachmentStats: "RTCAudioSenderStats", - RTCAudioReceiverStats: "RTCAudioHandlerStats", RTCReceivedRtpStreamStats: "RTCRtpStreamStats", RTCInboundRtpStreamStats: "RTCReceivedRtpStreamStats", RTCRemoteInboundRtpStreamStats: "RTCReceivedRtpStreamStats",