From e593c040013ccfdb437c8eb89fcd0ac9b505ef96 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 11 May 2014 13:29:51 -0400 Subject: [PATCH] Increase the size of the receive buffer for video data --- .../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 e049696c..b47ee96a 100644 --- a/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java +++ b/moonlight-common/src/com/limelight/nvstream/av/video/VideoStream.java @@ -23,7 +23,7 @@ public class VideoStream { public static final int FIRST_FRAME_PORT = 47996; public static final int FIRST_FRAME_TIMEOUT = 5000; - public static final int RTP_RECV_BUFFER = 128 * 1024; + public static final int RTP_RECV_BUFFER = 256 * 1024; public static final int MAX_PACKET_SIZE = 1050;