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
ea20f209
Commit
ea20f209
authored
Apr 25, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add options descriptions
parent
146b568b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
5 deletions
+26
-5
modules/mux/asf.c
modules/mux/asf.c
+26
-5
No files found.
modules/mux/asf.c
View file @
ea20f209
...
@@ -40,6 +40,22 @@ static void Close ( vlc_object_t * );
...
@@ -40,6 +40,22 @@ static void Close ( vlc_object_t * );
#define SOUT_CFG_PREFIX "sout-asf-"
#define SOUT_CFG_PREFIX "sout-asf-"
#define TITLE_TEXT N_("Title")
#define TITLE_LONGTEXT N_("Allows you to define the title that will be put " \
"in ASF comments.")
#define AUTHOR_TEXT N_("Author")
#define AUTHOR_LONGTEXT N_("Allows you to define the author that will be put " \
"in ASF comments.")
#define COPYRIGHT_TEXT N_("Copyright")
#define COPYRIGHT_LONGTEXT N_("Allows you to define the copyright string that "\
"will be put in ASF comments.")
#define COMMENT_TEXT N_("Comment")
#define COMMENT_LONGTEXT N_("Allows you to define the comment that will be " \
"put in ASF comments.")
#define RATING_TEXT N_("Rating")
#define RATING_LONGTEXT N_("Allows you to define the \"rating\" that will " \
"be put in ASF comments.")
vlc_module_begin
();
vlc_module_begin
();
set_description
(
_
(
"ASF muxer"
)
);
set_description
(
_
(
"ASF muxer"
)
);
set_capability
(
"sout mux"
,
5
);
set_capability
(
"sout mux"
,
5
);
...
@@ -47,11 +63,16 @@ vlc_module_begin();
...
@@ -47,11 +63,16 @@ vlc_module_begin();
add_shortcut
(
"asfh"
);
add_shortcut
(
"asfh"
);
set_callbacks
(
Open
,
Close
);
set_callbacks
(
Open
,
Close
);
add_string
(
SOUT_CFG_PREFIX
"title"
,
""
,
NULL
,
"title"
,
"title"
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"title"
,
""
,
NULL
,
TITLE_TEXT
,
TITLE_LONGTEXT
,
add_string
(
SOUT_CFG_PREFIX
"author"
,
""
,
NULL
,
"author"
,
"author"
,
VLC_TRUE
);
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"copyright"
,
""
,
NULL
,
"copyright"
,
"copyright"
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"author"
,
""
,
NULL
,
AUTHOR_TEXT
,
add_string
(
SOUT_CFG_PREFIX
"comment"
,
""
,
NULL
,
"comment"
,
"comment"
,
VLC_TRUE
);
AUTHOR_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"rating"
,
""
,
NULL
,
"rating"
,
"rating"
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"copyright"
,
""
,
NULL
,
COPYRIGHT_TEXT
,
COPYRIGHT_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"comment"
,
""
,
NULL
,
COMMENT_TEXT
,
COMMENT_LONGTEXT
,
VLC_TRUE
);
add_string
(
SOUT_CFG_PREFIX
"rating"
,
""
,
NULL
,
RATING_TEXT
,
RATING_LONGTEXT
,
VLC_TRUE
);
vlc_module_end
();
vlc_module_end
();
/*****************************************************************************
/*****************************************************************************
...
...
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