From 437645da130a86259160074f01772a92b8dc83e6 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 20 Jul 2015 17:33:29 -0700 Subject: [PATCH] Apply SDP changes from the Java common library. - Use the default vqos.bw.flags value - commit 8c83042 - Enable slicing to speed up some decoders - commit f21c8a8 --- limelight-common/SdpGenerator.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/limelight-common/SdpGenerator.c b/limelight-common/SdpGenerator.c index 4a6ae08..366db08 100644 --- a/limelight-common/SdpGenerator.c +++ b/limelight-common/SdpGenerator.c @@ -139,7 +139,8 @@ static int addGen4Options(PSDP_OPTION *head, char* addrStr) { err |= addAttributeString(head, "x-nv-video[0].rateControlMode", "4"); - err |= addAttributeString(head, "x-nv-vqos[0].bw.flags", "51"); + // Use slicing for increased performance on some decoders + err |= addAttributeString(head, "x-nv-video[0].videoEncoderSlicesPerFrame", "4"); return err; }