From 7b10e52808fb303bb791944ec3a35f8afca48ddb Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 15 Jun 2014 20:38:28 -0700 Subject: [PATCH] Set the receive thread's priority to maximum --- .../src/com/limelight/nvstream/av/video/VideoStream.java | 1 + 1 file changed, 1 insertion(+) diff --git a/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java b/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java index b47ee96a..61e90395 100644 --- a/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java +++ b/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java @@ -252,6 +252,7 @@ public class VideoStream { }; threads.add(t); t.setName("Video - Receive"); + t.setPriority(Thread.MAX_PRIORITY); t.start(); }