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
2623becc
Commit
2623becc
authored
Jul 25, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clone: use module_list() for --clone-vout-list
parent
5c887aed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/video_filter/clone.c
modules/video_filter/clone.c
+3
-2
No files found.
modules/video_filter/clone.c
View file @
2623becc
...
...
@@ -60,7 +60,8 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_VIDEO_VFILTER
)
add_integer
(
CFG_PREFIX
"count"
,
2
,
COUNT_TEXT
,
COUNT_LONGTEXT
,
false
)
add_string
(
CFG_PREFIX
"vout-list"
,
NULL
,
VOUTLIST_TEXT
,
VOUTLIST_LONGTEXT
,
true
)
add_module_list
(
CFG_PREFIX
"vout-list"
,
"vout display"
,
NULL
,
VOUTLIST_TEXT
,
VOUTLIST_LONGTEXT
,
true
)
add_shortcut
(
"clone"
)
set_callbacks
(
Open
,
Close
)
...
...
@@ -73,7 +74,7 @@ static const char *const ppsz_filter_options[] = {
"count"
,
"vout-list"
,
NULL
};
#define VOUTSEPARATOR '
,
'
#define VOUTSEPARATOR '
:
'
static
int
Filter
(
video_splitter_t
*
,
picture_t
*
pp_dst
[],
picture_t
*
);
...
...
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