Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
9580417f
Commit
9580417f
authored
Apr 13, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not use video_filter wrapper for puzzle/magnify/logo.
parent
4c3384da
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
17 deletions
+1
-17
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+1
-4
modules/video_filter/wrapper.c
modules/video_filter/wrapper.c
+0
-13
No files found.
modules/gui/qt4/components/extended_panels.cpp
View file @
9580417f
...
...
@@ -274,10 +274,7 @@ void ExtVideo::ChangeVFiltersString( const char *psz_name, bool b_add )
/* FIXME temporary hack */
const
char
*
psz_module_name
=
psz_name
;
if
(
!
strcmp
(
psz_name
,
"magnify"
)
||
!
strcmp
(
psz_name
,
"puzzle"
)
||
!
strcmp
(
psz_name
,
"logo"
)
||
!
strcmp
(
psz_name
,
"wall"
)
||
if
(
!
strcmp
(
psz_name
,
"wall"
)
||
!
strcmp
(
psz_name
,
"panoramix"
)
||
!
strcmp
(
psz_name
,
"clone"
)
)
psz_module_name
=
"video_filter_wrapper"
;
...
...
modules/video_filter/wrapper.c
View file @
9580417f
...
...
@@ -47,10 +47,6 @@ static void Close( vlc_object_t * );
#define DECLARE_OPEN(name,filter) \
static int Open##name ( vlc_object_t *p_this ) { return Open( p_this, #name, filter ); }
DECLARE_OPEN
(
magnify
,
true
)
DECLARE_OPEN
(
puzzle
,
true
)
DECLARE_OPEN
(
logo
,
true
)
DECLARE_OPEN
(
clone
,
false
)
DECLARE_OPEN
(
wall
,
false
)
DECLARE_OPEN
(
panoramix
,
false
)
...
...
@@ -68,15 +64,6 @@ vlc_module_begin()
set_category
(
CAT_VIDEO
)
set_subcategory
(
SUBCAT_VIDEO_VFILTER
)
DECLARE_MODULE
(
magnify
)
add_submodule
()
DECLARE_MODULE
(
puzzle
)
add_submodule
()
DECLARE_MODULE
(
logo
)
add_submodule
()
DECLARE_MODULE
(
clone
)
add_submodule
()
...
...
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