Update web-platform-tests to revision 4beda31498f85ded322ea4d55870973000364ac4

This commit is contained in:
WPT Sync Bot 2019-07-02 10:23:03 +00:00
parent f4ff9e2eeb
commit 2f34737d47
21 changed files with 352 additions and 109 deletions

View file

@ -143,6 +143,9 @@ dictionary RTCMediaSourceStats : RTCStats {
};
dictionary RTCAudioSourceStats : RTCMediaSourceStats {
double audioLevel;
double totalAudioEnergy;
double totalSamplesDuration;
};
dictionary RTCVideoSourceStats : RTCMediaSourceStats {
@ -207,10 +210,7 @@ dictionary RTCVideoReceiverStats : RTCVideoHandlerStats {
};
dictionary RTCAudioHandlerStats : RTCMediaHandlerStats {
double audioLevel;
double totalAudioEnergy;
boolean voiceActivityFlag;
double totalSamplesDuration;
};
dictionary RTCAudioSenderStats : RTCAudioHandlerStats {
@ -233,6 +233,9 @@ dictionary RTCAudioReceiverStats : RTCAudioHandlerStats {
unsigned long long concealmentEvents;
unsigned long long insertedSamplesForDeceleration;
unsigned long long removedSamplesForAcceleration;
double audioLevel;
double totalAudioEnergy;
double totalSamplesDuration;
};
dictionary RTCDataChannelStats : RTCStats {
@ -361,6 +364,12 @@ partial dictionary RTCInboundRtpStreamStats {
double fractionLost;
};
partial dictionary RTCAudioHandlerStats {
double audioLevel;
double totalAudioEnergy;
double totalSamplesDuration;
};
partial dictionary RTCVideoSenderStats {
unsigned long keyFramesSent;
};