summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.h
diff options
context:
space:
mode:
authorYigit Uyan <git@yigituyan.com>2020-10-13 01:17:12 -0700
committerAnton Khirnov <anton@khirnov.net>2020-10-28 13:53:20 +0100
commitc1efb1decb01af84d466a3f740c06c56c446ce56 (patch)
tree9c920f1530b8aa1be60144ec35c569c21173fa36 /libavformat/rtsp.h
parent81d4b8fb3cdc234d2961b23890aa02d4d29e8842 (diff)
rtsp: increase the control uri size
Current browsers support up to 2k characters. Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r--libavformat/rtsp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h
index 54a9a30c16..2b37f5b49f 100644
--- a/libavformat/rtsp.h
+++ b/libavformat/rtsp.h
@@ -315,7 +315,7 @@ typedef struct RTSPState {
/** some MS RTSP streams contain a URL in the SDP that we need to use
* for all subsequent RTSP requests, rather than the input URI; in
* other cases, this is a copy of AVFormatContext->filename. */
- char control_uri[1024];
+ char control_uri[2048];
/** The following are used for parsing raw mpegts in udp */
//@{