Increase the size of the receive buffer for video data

This commit is contained in:
Cameron Gutman 2014-05-11 13:29:51 -04:00
parent 1095d7808c
commit e593c04001

View File

@ -23,7 +23,7 @@ public class VideoStream {
public static final int FIRST_FRAME_PORT = 47996; public static final int FIRST_FRAME_PORT = 47996;
public static final int FIRST_FRAME_TIMEOUT = 5000; 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; public static final int MAX_PACKET_SIZE = 1050;