mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-20 19:42:45 +00:00
Reduce FEC data to 1 packet at max to lower bandwidth requirements
This commit is contained in:
parent
f35c2ead0f
commit
670622dfd7
@ -213,7 +213,12 @@ public class SdpGenerator {
|
||||
addSessionAttribute(config, "x-nv-vqos[0].fec.enable", "1");
|
||||
addSessionAttribute(config, "x-nv-vqos[0].fec.numSrcPackets", "50");
|
||||
addSessionAttribute(config, "x-nv-vqos[0].fec.numOutPackets", "60");
|
||||
addSessionAttribute(config, "x-nv-vqos[0].fec.repairPercent", "20");
|
||||
|
||||
// Since we can only deal with FEC data on a 1 packet frame,
|
||||
// restrict FEC repair percentage to minimum so we get only 1
|
||||
// FEC packet per frame
|
||||
addSessionAttribute(config, "x-nv-vqos[0].fec.repairPercent", "1");
|
||||
|
||||
addSessionAttribute(config, "x-nv-vqos[0].pictureRefreshIntervalMs", "0");
|
||||
addSessionAttribute(config, "x-nv-vqos[0].videoQualityScoreUpdateTime", "5000");
|
||||
addSessionAttribute(config, "x-nv-vqos[0].invalidateThreshold", "3");
|
||||
|
Loading…
x
Reference in New Issue
Block a user