From 7ee8a880646c274e31da378cc1c273604f837499 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Spr=C3=A5ng?= Date: Tue, 31 Mar 2020 15:41:59 +0200 Subject: [PATCH] Make prioritized RTX padding default again MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit r30936 accidentally made it defualt off. This reverts to the old behavior by default. Bug: webrtc:8975, chromium:1066442 Change-Id: I415d2f74bb7321f17b4039ca43cbd53c3e3725f9 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/172445 Commit-Queue: Erik Språng Reviewed-by: Danil Chapovalov Cr-Commit-Position: refs/heads/master@{#30954} --- modules/rtp_rtcp/include/rtp_rtcp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rtp_rtcp/include/rtp_rtcp.h b/modules/rtp_rtcp/include/rtp_rtcp.h index 095688a7d8..967ba663dc 100644 --- a/modules/rtp_rtcp/include/rtp_rtcp.h +++ b/modules/rtp_rtcp/include/rtp_rtcp.h @@ -154,7 +154,7 @@ class RtpRtcp : public Module, public RtcpFeedbackSenderInterface { // make padding potentially more useful. // If false, the last packet will always be picked. This may reduce CPU // overhead. - bool enable_rtx_padding_prioritization = false; + bool enable_rtx_padding_prioritization = true; private: RTC_DISALLOW_COPY_AND_ASSIGN(Configuration);