From fbd58c60ea12d8760bae86b7d98b2d0208418baf Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 28 Feb 2016 14:19:03 -0500 Subject: [PATCH] Disable dynamic resolution switching on Gen 5 servers --- limelight-common/SdpGenerator.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/limelight-common/SdpGenerator.c b/limelight-common/SdpGenerator.c index da4787a..4e13e5d 100644 --- a/limelight-common/SdpGenerator.c +++ b/limelight-common/SdpGenerator.c @@ -163,7 +163,9 @@ static int addGen5Options(PSDP_OPTION* head) { // We want to use the legacy TCP connections for control and input rather than the new UDP stuff err |= addAttributeString(head, "x-nv-general.useReliableUdp", "0"); err |= addAttributeString(head, "x-nv-ri.useControlChannel", "0"); - err |= addAttributeString(head, "x-nv-vqos[0].enableQec", "0"); + + // Disable dynamic resolution switching + err |= addAttributeString(head, "x-nv-vqos[0].drc.enable", "0"); return err; }