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
cbf60127
Commit
cbf60127
authored
Jul 09, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#transcode{vfilter=...} only works with video filter2 filters.
parent
5d4c27ec
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
2 deletions
+8
-2
include/configuration.h
include/configuration.h
+1
-0
include/vlc_config_cat.h
include/vlc_config_cat.h
+5
-0
modules/stream_out/transcode.c
modules/stream_out/transcode.c
+1
-1
modules/video_filter/scale.c
modules/video_filter/scale.c
+1
-1
No files found.
include/configuration.h
View file @
cbf60127
...
...
@@ -79,6 +79,7 @@
#define SUBCAT_VIDEO_VFILTER 303
#define SUBCAT_VIDEO_TEXT 304
#define SUBCAT_VIDEO_SUBPIC 305
#define SUBCAT_VIDEO_VFILTER2 306
#define CAT_INPUT 4
#define SUBCAT_INPUT_GENERAL 401
...
...
include/vlc_config_cat.h
View file @
cbf60127
...
...
@@ -86,6 +86,10 @@
#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\".")
...
...
@@ -313,6 +317,7 @@ 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/stream_out/transcode.c
View file @
cbf60127
...
...
@@ -217,7 +217,7 @@ vlc_module_begin();
MAXWIDTH_LONGTEXT
,
VLC_TRUE
);
add_integer
(
SOUT_CFG_PREFIX
"maxheight"
,
0
,
NULL
,
MAXHEIGHT_TEXT
,
MAXHEIGHT_LONGTEXT
,
VLC_TRUE
);
add_module_list_cat
(
SOUT_CFG_PREFIX
"vfilter"
,
SUBCAT_VIDEO_VFILTER
,
add_module_list_cat
(
SOUT_CFG_PREFIX
"vfilter"
,
SUBCAT_VIDEO_VFILTER
2
,
NULL
,
NULL
,
VFILTER_TEXT
,
VFILTER_LONGTEXT
,
VLC_FALSE
);
...
...
modules/video_filter/scale.c
View file @
cbf60127
...
...
@@ -53,7 +53,7 @@ vlc_module_begin();
set_description
(
_
(
"Video scaling filter"
)
);
set_capability
(
"video filter2"
,
10000
);
set_category
(
CAT_VIDEO
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
);
set_subcategory
(
SUBCAT_VIDEO_VFILTER
2
);
set_callbacks
(
OpenFilter
,
CloseFilter
);
vlc_module_end
();
...
...
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