Use a 60 FPS redraw rate even if the stream is 30 FPS to reduce stutter

This commit is contained in:
Cameron Gutman 2013-12-29 01:41:17 -05:00
parent 6f8306cc18
commit 666fbecc01

View File

@ -133,7 +133,7 @@ public class VideoStream {
this.decRend = decRend; this.decRend = decRend;
if (decRend != null) { if (decRend != null) {
decRend.setup(streamConfig.getWidth(), streamConfig.getHeight(), decRend.setup(streamConfig.getWidth(), streamConfig.getHeight(),
streamConfig.getRefreshRate(), renderTarget, drFlags); 60, renderTarget, drFlags);
} }
} }