Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
1fa3f9dd
Commit
1fa3f9dd
authored
Sep 06, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Preferences categories are *not* categories. They are *user* strings.
parent
91e0b51e
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
6 additions
and
14 deletions
+6
-14
include/vlc_config_cat.h
include/vlc_config_cat.h
+0
-8
modules/video_filter/adjust.c
modules/video_filter/adjust.c
+1
-1
modules/video_filter/gradient.c
modules/video_filter/gradient.c
+1
-1
modules/video_filter/invert.c
modules/video_filter/invert.c
+1
-1
modules/video_filter/psychedelic.c
modules/video_filter/psychedelic.c
+1
-1
modules/video_filter/ripple.c
modules/video_filter/ripple.c
+1
-1
modules/video_filter/wave.c
modules/video_filter/wave.c
+1
-1
No files found.
include/vlc_config_cat.h
View file @
1fa3f9dd
...
...
@@ -86,10 +86,6 @@
#define VFILTER_HELP N_( \
"Video filters are used to postprocess the video stream." )
#define VFILTER2_TITLE N_("Filters (v2)" )
#define VFILTER2_HELP N_( \
"Video filters are used to postprocess the video stream." )
#define SUBPIC_TITLE N_( "Subtitles/OSD")
#define SUBPIC_HELP N_( "Miscellaneous settings related to On-Screen-Display,"\
" subtitles and \"overlay subpictures\".")
...
...
@@ -231,9 +227,6 @@
"In this section you can force the behavior of the subtitle demuxer, " \
"for example by setting the subtitles type or file name.")
#define VIDEO_FILTER2_TITLE N_("Video filters settings")
#define VIDEO_FILTER2_HELP " "
/*
* A little help for modules with unknown capabilities
*/
...
...
@@ -317,7 +310,6 @@ static struct config_category_t categories_array[] =
{
SUBCAT_VIDEO_GENERAL
,
VIDEO_GENERAL_TITLE
,
VIDEO_GENERAL_HELP
},
{
SUBCAT_VIDEO_VOUT
,
_VOUT_TITLE
,
VOUT_HELP
},
{
SUBCAT_VIDEO_VFILTER
,
VFILTER_TITLE
,
VFILTER_HELP
},
{
SUBCAT_VIDEO_VFILTER2
,
VFILTER2_TITLE
,
VFILTER2_HELP
},
{
SUBCAT_VIDEO_SUBPIC
,
SUBPIC_TITLE
,
SUBPIC_HELP
},
{
CAT_INPUT
,
INPUT_TITLE
,
INPUT_HELP
},
...
...
modules/video_filter/adjust.c
View file @
1fa3f9dd
...
...
@@ -73,7 +73,7 @@ vlc_module_begin();
set_description
(
_
(
"Image properties filter"
)
);
set_shortname
(
N_
(
"Image adjust"
));
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
2
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
set_capability
(
"video filter2"
,
0
);
add_float_with_range
(
"contrast"
,
1
.
0
,
0
.
0
,
2
.
0
,
NULL
,
...
...
modules/video_filter/gradient.c
View file @
1fa3f9dd
...
...
@@ -74,7 +74,7 @@ vlc_module_begin();
set_shortname
(
N_
(
"Gradient"
));
set_capability
(
"video filter2"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
2
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
add_string
(
FILTER_PREFIX
"mode"
,
"gradient"
,
NULL
,
MODE_TEXT
,
MODE_LONGTEXT
,
VLC_FALSE
);
...
...
modules/video_filter/invert.c
View file @
1fa3f9dd
...
...
@@ -47,7 +47,7 @@ vlc_module_begin();
set_description
(
_
(
"Invert video filter"
)
);
set_shortname
(
N_
(
"Color inversion"
));
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
2
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
set_capability
(
"video filter2"
,
0
);
add_shortcut
(
"invert"
);
set_callbacks
(
Create
,
Destroy
);
...
...
modules/video_filter/psychedelic.c
View file @
1fa3f9dd
...
...
@@ -52,7 +52,7 @@ vlc_module_begin();
set_shortname
(
N_
(
"Psychedelic"
));
set_capability
(
"video filter2"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
2
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
add_shortcut
(
"psychedelic"
);
set_callbacks
(
Create
,
Destroy
);
...
...
modules/video_filter/ripple.c
View file @
1fa3f9dd
...
...
@@ -51,7 +51,7 @@ vlc_module_begin();
set_shortname
(
N_
(
"Ripple"
));
set_capability
(
"video filter2"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
2
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
add_shortcut
(
"ripple"
);
set_callbacks
(
Create
,
Destroy
);
...
...
modules/video_filter/wave.c
View file @
1fa3f9dd
...
...
@@ -51,7 +51,7 @@ vlc_module_begin();
set_shortname
(
N_
(
"Wave"
));
set_capability
(
"video filter2"
,
0
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
2
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
add_shortcut
(
"wave"
);
set_callbacks
(
Create
,
Destroy
);
...
...
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