From 1095d7808cdd20858d748791e1caa982f6339cdf Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 11 May 2014 13:29:20 -0400 Subject: [PATCH] Increase the size of the video ring buffer for high bitrate streaming --- .../src/com/limelight/nvstream/av/video/VideoStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 4ebf27df..e049696c 100644 --- a/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java +++ b/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java @@ -30,7 +30,7 @@ public class VideoStream { // The ring size MUST be greater than or equal to // the maximum number of packets in a fully // presentable frame - public static final int VIDEO_RING_SIZE = 192; + public static final int VIDEO_RING_SIZE = 384; private InetAddress host; private DatagramSocket rtp;