From 09177be8f72f11091c8b8b997a318a5103e95248 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 7 May 2014 00:22:57 -0400 Subject: [PATCH] Drop the maximum bitrate of 720p60 to 13 Mbps --- .../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 52bb9075..8bc3b654 100644 --- a/moonlight-common/src/com/limelight/nvstream/rtsp/SdpGenerator.java +++ b/moonlight-common/src/com/limelight/nvstream/rtsp/SdpGenerator.java @@ -165,7 +165,7 @@ public class SdpGenerator { addSessionAttribute(config, "x-nv-vqos[0].bw.minimumBitrate", "25000"); } else if (sc.getRefreshRate() >= 60) { - addSessionAttribute(config, "x-nv-vqos[0].bw.maximumBitrate", "15000"); + addSessionAttribute(config, "x-nv-vqos[0].bw.maximumBitrate", "13000"); addSessionAttribute(config, "x-nv-vqos[0].bw.minimumBitrate", "13000"); } else {