From e5b6a2b7a91321f5c3f96b88232340cba19195cf Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 1 Dec 2019 13:59:09 -0800 Subject: [PATCH] Bump RTSP_MAX_RESP_SIZE to 48 KB --- src/RtspConnection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RtspConnection.c b/src/RtspConnection.c index 9a28d23..6c9aa91 100644 --- a/src/RtspConnection.c +++ b/src/RtspConnection.c @@ -3,7 +3,7 @@ #include -#define RTSP_MAX_RESP_SIZE 32768 +#define RTSP_MAX_RESP_SIZE 49152 #define RTSP_TIMEOUT_SEC 10 static int currentSeqNumber;