Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
450
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
cd6541e2
Commit
cd6541e2
authored
4 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
standard: mark URL and email option obsolete
parent
979f3fbb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#15710
passed with stage
in 26 minutes and 32 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/stream_out/standard.c
+3
-13
3 additions, 13 deletions
modules/stream_out/standard.c
with
3 additions
and
13 deletions
modules/stream_out/standard.c
+
3
−
13
View file @
cd6541e2
...
...
@@ -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
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment