<div dir="ltr">Hi,<div><br></div><div>With latest master, when trying to play RTSP I see assertion failures in config/core.c where it asserts that a configuration value is not null.<br><br>These assertions are triggered by calls in modules/stream_out/rtsp.c:<br><br>RtspSetup() has this:<br><br>    rtsp->timeout = vlc_tick_from_sec(__MAX(0,var_InheritInteger(owner, "rtsp-timeout")));<br>    char *user = var_InheritString(owner, "sout-rtsp-user");<br>    char *pwd = var_InheritString(owner, "sout-rtsp-pwd");<br><br>RtspAddId() has this:<br><br>    char *user = var_InheritString(rtsp->owner, "sout-rtsp-user");<br>    char *pwd = var_InheritString(rtsp->owner, "sout-rtsp-pwd");<br><br>It looks like these variables were removed from modules/stream_out/rtp.c as part of 3b684b:<br><br>-    add_integer( "rtsp-timeout", 60, RTSP_TIMEOUT_TEXT,<br>-                 RTSP_TIMEOUT_LONGTEXT, true )<br>-    add_string( "sout-rtsp-user", "",<br>-                RTSP_USER_TEXT, RTSP_USER_LONGTEXT, true )<br>-    add_password("sout-rtsp-pwd", "", RTSP_PASS_TEXT, RTSP_PASS_LONGTEXT)<br><br>Consequently there's the assertion failures, and it's no longer possible to use VLC to setup a password protected RTSP stream is it?<br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"></div></div><div><br></div><div>Regards,</div><div><br></div><div>-M.</div></div>