Set the receive thread's priority to maximum

This commit is contained in:
Cameron Gutman 2014-06-15 20:38:28 -07:00
parent 890ee846f7
commit 7b10e52808

View File

@ -252,6 +252,7 @@ public class VideoStream {
}; };
threads.add(t); threads.add(t);
t.setName("Video - Receive"); t.setName("Video - Receive");
t.setPriority(Thread.MAX_PRIORITY);
t.start(); t.start();
} }