Skip to content
Snippets Groups Projects
Commit cd6541e2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

standard: mark URL and email option obsolete

parent 979f3fbb
No related branches found
No related tags found
No related merge requests found
Pipeline #15710 passed with stage
in 26 minutes and 32 seconds
......@@ -63,16 +63,6 @@
#define DESC_LONGTEXT N_( \
"This allows you to give a short description with details about the stream, " \
"that will be announced in the SDP (Session Descriptor)." )
#define URL_TEXT N_("Session URL")
#define URL_LONGTEXT N_( \
"This allows you to give a URL with more details about the stream " \
"(often the website of the streaming organization), that will " \
"be announced in the SDP (Session Descriptor)." )
#define EMAIL_TEXT N_("Session email")
#define EMAIL_LONGTEXT N_( \
"This allows you to give a contact mail address for the stream, that will " \
"be announced in the SDP (Session Descriptor)." )
#define SAP_TEXT N_("SAP announcing")
#define SAP_LONGTEXT N_("Announce this session with SAP.")
......@@ -104,8 +94,8 @@ vlc_module_begin ()
add_string( SOUT_CFG_PREFIX "name", "", NAME_TEXT, NAME_LONGTEXT, true )
add_obsolete_string( SOUT_CFG_PREFIX "group" ) /* since 2.1.0 */
add_string( SOUT_CFG_PREFIX "description", "", DESC_TEXT, DESC_LONGTEXT, true )
add_string( SOUT_CFG_PREFIX "url", "", URL_TEXT, URL_LONGTEXT, true )
add_string( SOUT_CFG_PREFIX "email", "", EMAIL_TEXT, EMAIL_LONGTEXT, true )
add_obsolete_string( SOUT_CFG_PREFIX "url" ) /* since 4.0.0 */
add_obsolete_string( SOUT_CFG_PREFIX "email" ) /* since 4.0.0 */
add_obsolete_string( SOUT_CFG_PREFIX "phone" ) /* since 3.0.0 */
set_callbacks( Open, Close )
......@@ -117,7 +107,7 @@ vlc_module_end ()
*****************************************************************************/
static const char *const ppsz_sout_options[] = {
"access", "mux", "url", "dst",
"sap", "name", "description", "url", "email",
"sap", "name", "description",
"bind", "path", NULL
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment