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:
Philipp Hancke 2023-11-28 07:49:51 +01:00 committed by WebRTC LUCI CQ
parent f99c355a75
commit 96e14c82b9
2 changed files with 1 additions and 7 deletions

View File

@ -110,9 +110,6 @@ ACTIVE_FIELD_TRIALS: FrozenSet[FieldTrial] = frozenset([
FieldTrial('WebRTC-SrtpRemoveReceiveStream', FieldTrial('WebRTC-SrtpRemoveReceiveStream',
'webrtc:15604', 'webrtc:15604',
date(2024, 10, 1)), date(2024, 10, 1)),
FieldTrial('WebRTC-Stats-RtxReceiveStats',
'webrtc:15096',
date(2024, 4, 1)),
FieldTrial('WebRTC-TaskQueue-ReplaceLibeventWithStdlib', FieldTrial('WebRTC-TaskQueue-ReplaceLibeventWithStdlib',
'webrtc:14389', 'webrtc:14389',
date(2024, 4, 1)), date(2024, 4, 1)),

View File

@ -567,12 +567,9 @@ VideoReceiveStreamInterface::Stats VideoReceiveStream2::GetStats() const {
rtp_receive_statistics_->GetStatistician(rtx_ssrc()); rtp_receive_statistics_->GetStatistician(rtx_ssrc());
if (rtx_statistician) { if (rtx_statistician) {
stats.total_bitrate_bps += rtx_statistician->BitrateReceived(); 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(); stats.rtx_rtp_stats = rtx_statistician->GetStats();
} }
} }
}
return stats; return stats;
} }