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
a7420312
Commit
a7420312
authored
Jan 21, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add shortnames to postproc and swscale. Will look better in the preferences.
parent
c138b6e5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
1 deletion
+3
-1
modules/video_filter/blendbench.c
modules/video_filter/blendbench.c
+1
-1
modules/video_filter/postproc.c
modules/video_filter/postproc.c
+1
-0
modules/video_filter/swscale.c
modules/video_filter/swscale.c
+1
-0
No files found.
modules/video_filter/blendbench.c
View file @
a7420312
...
...
@@ -72,7 +72,7 @@ static picture_t *Filter( filter_t *, picture_t * );
vlc_module_begin
()
set_description
(
N_
(
"Blending benchmark filter"
)
)
set_shortname
(
N_
(
"
b
lendbench"
))
set_shortname
(
N_
(
"
B
lendbench"
))
set_category
(
CAT_VIDEO
)
set_subcategory
(
SUBCAT_VIDEO_VFILTER
)
set_capability
(
"video filter2"
,
0
)
...
...
modules/video_filter/postproc.c
View file @
a7420312
...
...
@@ -73,6 +73,7 @@ static int PPNameCallback( vlc_object_t *, char const *,
*****************************************************************************/
vlc_module_begin
()
set_description
(
N_
(
"Video post processing filter"
)
)
set_shortname
(
N_
(
"Postproc"
)
)
add_shortcut
(
"postprocess"
)
/* name is "postproc" */
add_shortcut
(
"pp"
)
set_category
(
CAT_VIDEO
)
...
...
modules/video_filter/swscale.c
View file @
a7420312
...
...
@@ -66,6 +66,7 @@ const char *const ppsz_mode_descriptions[] =
vlc_module_begin
()
set_description
(
N_
(
"Video scaling filter"
)
)
set_shortname
(
N_
(
"Swscale"
)
)
set_capability
(
"video filter2"
,
150
)
set_category
(
CAT_VIDEO
)
set_subcategory
(
SUBCAT_VIDEO_VFILTER
)
...
...
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