Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
1996bfb7
Commit
1996bfb7
authored
Feb 20, 2005
by
Yoann Peronneau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/misc/vlm.c: added 'inputdel all' to delete all inputs of a VLM media
parent
d06602cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
src/misc/vlm.c
src/misc/vlm.c
+9
-1
No files found.
src/misc/vlm.c
View file @
1996bfb7
...
...
@@ -981,6 +981,13 @@ int vlm_MediaSetup( vlm_t *vlm, vlm_media_t *media, char *psz_cmd,
TAB_APPEND
(
media
->
i_input
,
media
->
input
,
input
);
}
else
if
(
!
strcmp
(
psz_cmd
,
"inputdel"
)
&&
!
strcmp
(
psz_value
,
"all"
)
)
{
while
(
media
->
i_input
>
0
)
{
TAB_REMOVE
(
media
->
i_input
,
media
->
input
,
media
->
input
[
0
]
);
}
}
else
if
(
!
strcmp
(
psz_cmd
,
"inputdel"
)
)
{
char
*
input
;
...
...
@@ -1866,7 +1873,8 @@ static vlm_message_t *vlm_Help( vlm_t *vlm, char *psz_filter )
MessageAddChild
(
"load (config_file)"
);
message_child
=
MessageAdd
(
"Media Proprieties Syntax:"
);
MessageAddChild
(
"input|inputdel (input_name)"
);
MessageAddChild
(
"input (input_name)"
);
MessageAddChild
(
"inputdel (input_name)|all"
);
MessageAddChild
(
"output (output_name)"
);
MessageAddChild
(
"enabled|disabled"
);
MessageAddChild
(
"loop|unloop (broadcast only)"
);
...
...
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