[vlc-commits] rtp: restore the RTSP (live) stream output options
Rémi Denis-Courmont
git at videolan.org
Sat Nov 21 08:51:10 CET 2020
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Nov 21 09:50:29 2020 +0200| [f47b6d762e196fa04f5344242dffc32fb9444d99] | committer: Rémi Denis-Courmont
rtp: restore the RTSP (live) stream output options
(Fix assertion failures.)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f47b6d762e196fa04f5344242dffc32fb9444d99
---
modules/stream_out/rtp.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/modules/stream_out/rtp.c b/modules/stream_out/rtp.c
index 68ff34b953..1a0ebbd2df 100644
--- a/modules/stream_out/rtp.c
+++ b/modules/stream_out/rtp.c
@@ -217,6 +217,11 @@ vlc_module_begin ()
RTCP_MUX_TEXT, RTCP_MUX_LONGTEXT, false )
add_integer( SOUT_CFG_PREFIX "caching", MS_FROM_VLC_TICK(DEFAULT_PTS_DELAY),
CACHING_TEXT, CACHING_LONGTEXT, true )
+ add_integer( "rtsp-timeout", 60, RTSP_TIMEOUT_TEXT,
+ RTSP_TIMEOUT_LONGTEXT, true )
+ add_string( "sout-rtsp-user", "",
+ RTSP_USER_TEXT, RTSP_USER_LONGTEXT, true )
+ add_password("sout-rtsp-pwd", "", RTSP_PASS_TEXT, RTSP_PASS_LONGTEXT)
#ifdef HAVE_SRTP
add_string( SOUT_CFG_PREFIX "key", "",
More information about the vlc-commits
mailing list