Remove WebRTC-Stats-RtxReceiveStats killswitch
the rollout happened in M115 without known issues. BUG=webrtc:15096 Change-Id: I10961bfcc50450360cbf22cd60561ea3dc7e5594 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/329000 Reviewed-by: Henrik Boström <hbos@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Philipp Hancke <phancke@microsoft.com> Cr-Commit-Position: refs/heads/main@{#41269}
This commit is contained in:
parent
f99c355a75
commit
96e14c82b9
@ -110,9 +110,6 @@ ACTIVE_FIELD_TRIALS: FrozenSet[FieldTrial] = frozenset([
|
||||
FieldTrial('WebRTC-SrtpRemoveReceiveStream',
|
||||
'webrtc:15604',
|
||||
date(2024, 10, 1)),
|
||||
FieldTrial('WebRTC-Stats-RtxReceiveStats',
|
||||
'webrtc:15096',
|
||||
date(2024, 4, 1)),
|
||||
FieldTrial('WebRTC-TaskQueue-ReplaceLibeventWithStdlib',
|
||||
'webrtc:14389',
|
||||
date(2024, 4, 1)),
|
||||
|
||||
@ -567,12 +567,9 @@ VideoReceiveStreamInterface::Stats VideoReceiveStream2::GetStats() const {
|
||||
rtp_receive_statistics_->GetStatistician(rtx_ssrc());
|
||||
if (rtx_statistician) {
|
||||
stats.total_bitrate_bps += rtx_statistician->BitrateReceived();
|
||||
// TODO(bugs.webrtc.org/15096): remove kill-switch after rollout.
|
||||
if (!call_->trials().IsDisabled("WebRTC-Stats-RtxReceiveStats")) {
|
||||
stats.rtx_rtp_stats = rtx_statistician->GetStats();
|
||||
}
|
||||
}
|
||||
}
|
||||
return stats;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user