Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
b8723d77
Commit
b8723d77
authored
Mar 14, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sout standard: obsolete "group"
(cherry picked from commit cdf9d7ce729d9dbb1f9deddd9dde331667c33d65)
parent
036d7985
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
modules/stream_out/standard.c
modules/stream_out/standard.c
+2
-8
No files found.
modules/stream_out/standard.c
View file @
b8723d77
...
...
@@ -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
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment