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
695a6ba5
Commit
695a6ba5
authored
Oct 25, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
plugin: add separate category for video splitters (fixes #9967)
parent
f2989d2e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
3 deletions
+11
-3
include/vlc_config_cat.h
include/vlc_config_cat.h
+5
-0
include/vlc_plugin.h
include/vlc_plugin.h
+1
-0
modules/video_splitter/clone.c
modules/video_splitter/clone.c
+1
-1
modules/video_splitter/panoramix.c
modules/video_splitter/panoramix.c
+1
-1
modules/video_splitter/wall.c
modules/video_splitter/wall.c
+1
-1
src/libvlc-module.c
src/libvlc-module.c
+2
-0
No files found.
include/vlc_config_cat.h
View file @
695a6ba5
...
...
@@ -82,6 +82,10 @@
#define SUBPIC_TITLE N_( "Subtitles / OSD")
#define SUBPIC_HELP N_( "Settings related to On-Screen-Display,"\
" subtitles and \"overlay subpictures\"")
#define SPLITTER_TITLE N_("Splitters")
#define SPLITTER_HELP N_("Video splitters separate the stream into multiple videos.")
/*
#define TEXT_HELP N_( \
"Use the settings of the \"freetype\" module to choose the font you " \
...
...
@@ -202,6 +206,7 @@ static const struct config_category_t categories_array[] =
{
SUBCAT_VIDEO_VOUT
,
_VOUT_TITLE
,
VOUT_HELP
},
{
SUBCAT_VIDEO_VFILTER
,
VFILTER_TITLE
,
VFILTER_HELP
},
{
SUBCAT_VIDEO_SUBPIC
,
SUBPIC_TITLE
,
SUBPIC_HELP
},
{
SUBCAT_VIDEO_SPLITTER
,
SPLITTER_TITLE
,
SPLITTER_HELP
},
{
CAT_INPUT
,
INPUT_TITLE
,
INPUT_HELP
},
{
SUBCAT_INPUT_GENERAL
,
INPUT_TITLE
,
INPUT_HELP
},
...
...
include/vlc_plugin.h
View file @
695a6ba5
...
...
@@ -154,6 +154,7 @@ enum vlc_module_properties
#define SUBCAT_VIDEO_VOUT 302
#define SUBCAT_VIDEO_VFILTER 303
#define SUBCAT_VIDEO_SUBPIC 305
#define SUBCAT_VIDEO_SPLITTER 306
#define CAT_INPUT 4
#define SUBCAT_INPUT_GENERAL 401
...
...
modules/video_splitter/clone.c
View file @
695a6ba5
...
...
@@ -57,7 +57,7 @@ vlc_module_begin ()
set_shortname
(
N_
(
"Clone"
))
set_help
(
CLONE_HELP
)
set_category
(
CAT_VIDEO
)
set_subcategory
(
SUBCAT_VIDEO_
VFIL
TER
)
set_subcategory
(
SUBCAT_VIDEO_
SPLIT
TER
)
add_integer
(
CFG_PREFIX
"count"
,
2
,
COUNT_TEXT
,
COUNT_LONGTEXT
,
false
)
add_module_list
(
CFG_PREFIX
"vout-list"
,
"vout display"
,
NULL
,
...
...
modules/video_splitter/panoramix.c
View file @
695a6ba5
...
...
@@ -83,7 +83,7 @@ vlc_module_begin()
set_help
(
PANORAMIX_HELP
)
set_capability
(
"video splitter"
,
0
)
set_category
(
CAT_VIDEO
)
set_subcategory
(
SUBCAT_VIDEO_
VFIL
TER
)
set_subcategory
(
SUBCAT_VIDEO_
SPLIT
TER
)
add_integer
(
CFG_PREFIX
"cols"
,
-
1
,
COLS_TEXT
,
COLS_LONGTEXT
,
true
)
change_integer_range
(
-
1
,
COL_MAX
)
...
...
modules/video_splitter/wall.c
View file @
695a6ba5
...
...
@@ -69,7 +69,7 @@ vlc_module_begin()
set_shortname
(
N_
(
"Image wall"
))
set_capability
(
"video splitter"
,
0
)
set_category
(
CAT_VIDEO
)
set_subcategory
(
SUBCAT_VIDEO_
VFIL
TER
)
set_subcategory
(
SUBCAT_VIDEO_
SPLIT
TER
)
add_integer
(
CFG_PREFIX
"cols"
,
3
,
COLS_TEXT
,
COLS_LONGTEXT
,
false
)
change_integer_range
(
1
,
COL_MAX
)
...
...
src/libvlc-module.c
View file @
695a6ba5
...
...
@@ -1597,6 +1597,8 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_VIDEO_VFILTER
)
add_module_list_cat
(
"video-filter"
,
SUBCAT_VIDEO_VFILTER
,
NULL
,
VIDEO_FILTER_TEXT
,
VIDEO_FILTER_LONGTEXT
,
false
)
set_subcategory
(
SUBCAT_VIDEO_SPLITTER
)
add_module_list
(
"video-splitter"
,
"video splitter"
,
NULL
,
VIDEO_SPLITTER_TEXT
,
VIDEO_SPLITTER_LONGTEXT
,
false
)
add_obsolete_string
(
"vout-filter"
)
/* since 2.0.0 */
...
...
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