mirror of
https://github.com/servo/servo.git
synced 2025-09-02 11:08:22 +01:00
Update web-platform-tests to revision 4beda31498f85ded322ea4d55870973000364ac4
This commit is contained in:
parent
f4ff9e2eeb
commit
2f34737d47
21 changed files with 352 additions and 109 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue