From 306c2d143b3c7b8f5b59635a9ba84e29579fe42f Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 28 Feb 2016 14:12:34 -0500 Subject: [PATCH] Disable resolution switching on Gen 5 servers --- .../src/com/limelight/nvstream/rtsp/SdpGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonlight-common/src/com/limelight/nvstream/rtsp/SdpGenerator.java b/moonlight-common/src/com/limelight/nvstream/rtsp/SdpGenerator.java index 30fd57c1..26ea44fe 100644 --- a/moonlight-common/src/com/limelight/nvstream/rtsp/SdpGenerator.java +++ b/moonlight-common/src/com/limelight/nvstream/rtsp/SdpGenerator.java @@ -62,7 +62,7 @@ public class SdpGenerator { addSessionAttribute(config, "x-nv-general.useReliableUdp", "0"); addSessionAttribute(config, "x-nv-ri.useControlChannel", "0"); - addSessionAttribute(config, "x-nv-vqos[0].enableQec", "0"); + addSessionAttribute(config, "x-nv-vqos[0].drc.enable", "0"); } public static String generateSdpFromContext(ConnectionContext context) {