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
cdf9d7ce
Commit
cdf9d7ce
authored
13 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
sout standard: obsolete "group"
parent
11f1a3ea
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/stream_out/standard.c
+2
-8
2 additions, 8 deletions
modules/stream_out/standard.c
with
2 additions
and
8 deletions
modules/stream_out/standard.c
+
2
−
8
View file @
cdf9d7ce
...
...
@@ -59,12 +59,6 @@
#define NAME_LONGTEXT N_( \
"This is the name of the session that will be announced in the SDP " \
"(Session Descriptor)." )
#define GROUP_TEXT N_("Session groupname")
#define GROUP_LONGTEXT N_( \
"This allows you to specify a group for the session, that will be announced "\
"if you choose to use SAP." )
#define DESC_TEXT N_("Session description")
#define DESC_LONGTEXT N_( \
"This allows you to give a short description with details about the stream, " \
...
...
@@ -107,7 +101,7 @@ vlc_module_begin ()
add_string
(
SOUT_CFG_PREFIX
"path"
,
""
,
PATH_TEXT
,
PATH_LONGTEXT
,
false
)
add_bool
(
SOUT_CFG_PREFIX
"sap"
,
false
,
SAP_TEXT
,
SAP_LONGTEXT
,
true
)
add_string
(
SOUT_CFG_PREFIX
"name"
,
""
,
NAME_TEXT
,
NAME_LONGTEXT
,
true
)
add_string
(
SOUT_CFG_PREFIX
"group"
,
""
,
GROUP_TEXT
,
GROUP_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
)
...
...
@@ -122,7 +116,7 @@ vlc_module_end ()
*****************************************************************************/
static
const
char
*
const
ppsz_sout_options
[]
=
{
"access"
,
"mux"
,
"url"
,
"dst"
,
"sap"
,
"name"
,
"group"
,
"description"
,
"url"
,
"email"
,
"phone"
,
"sap"
,
"name"
,
"description"
,
"url"
,
"email"
,
"phone"
,
"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