Implement QualityLimitationReasonTracker and expose "reason".
This CL implements the logic behind qualityLimitationReason[1] and qualityLimitationDurations[2] This CL also exposes qualityLimitationReason in the standard getStats() API, but does not expose qualityLimitationDurations because that is blocked on supporting the "record<>" type in RTCStatsMember[3]. [1] https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-qualitylimitationreason [2] https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-qualitylimitationdurations [3] https://crbug.com/webrtc/10685 TBR=stefan@webrtc.org Bug: webrtc:10451, webrtc:10686 Change-Id: Ifff0be4ddd64eaec23d59c02af99fdbb1feb3841 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/138825 Commit-Queue: Henrik Boström <hbos@webrtc.org> Reviewed-by: Åsa Persson <asapersson@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28090}
This commit is contained in:
committed by
Commit Bot
parent
07fc398ca8
commit
ce33b6a4cf
@ -834,6 +834,7 @@ class RTCStatsReportVerifier {
|
||||
outbound_stream.total_encoded_bytes_target);
|
||||
verifier.TestMemberIsNonNegative<double>(
|
||||
outbound_stream.total_packet_send_delay);
|
||||
verifier.TestMemberIsDefined(outbound_stream.quality_limitation_reason);
|
||||
// The integration test is not set up to test screen share; don't require
|
||||
// this to be present.
|
||||
verifier.MarkMemberTested(outbound_stream.content_type, true);
|
||||
@ -844,6 +845,7 @@ class RTCStatsReportVerifier {
|
||||
outbound_stream.total_encoded_bytes_target);
|
||||
// TODO(https://crbug.com/webrtc/10635): Implement for audio as well.
|
||||
verifier.TestMemberIsUndefined(outbound_stream.total_packet_send_delay);
|
||||
verifier.TestMemberIsUndefined(outbound_stream.quality_limitation_reason);
|
||||
verifier.TestMemberIsUndefined(outbound_stream.content_type);
|
||||
}
|
||||
return verifier.ExpectAllMembersSuccessfullyTested();
|
||||
|
||||
Reference in New Issue
Block a user