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
3dbb2d57
Commit
3dbb2d57
authored
Sep 02, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
video_filter: remove unneeded function.
parent
f7c1808e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
22 deletions
+2
-22
modules/video_filter/rv32.c
modules/video_filter/rv32.c
+1
-11
modules/video_filter/scale.c
modules/video_filter/scale.c
+1
-11
No files found.
modules/video_filter/rv32.c
View file @
3dbb2d57
...
...
@@ -36,8 +36,6 @@
* Local prototypes
****************************************************************************/
static
int
OpenFilter
(
vlc_object_t
*
);
static
void
CloseFilter
(
vlc_object_t
*
);
static
picture_t
*
Filter
(
filter_t
*
,
picture_t
*
);
/*****************************************************************************
...
...
@@ -46,7 +44,7 @@ static picture_t *Filter( filter_t *, picture_t * );
vlc_module_begin
()
set_description
(
N_
(
"RV32 conversion filter"
)
)
set_capability
(
"video filter2"
,
1
)
set_callbacks
(
OpenFilter
,
CloseFilter
)
set_callbacks
(
OpenFilter
,
NULL
)
vlc_module_end
()
/*****************************************************************************
...
...
@@ -73,14 +71,6 @@ static int OpenFilter( vlc_object_t *p_this )
return
VLC_SUCCESS
;
}
/*****************************************************************************
* CloseFilter: clean up the filter
*****************************************************************************/
static
void
CloseFilter
(
vlc_object_t
*
p_this
)
{
(
void
)
p_this
;
}
/****************************************************************************
* Filter: the whole thing
****************************************************************************/
...
...
modules/video_filter/scale.c
View file @
3dbb2d57
...
...
@@ -38,8 +38,6 @@
* Local prototypes
****************************************************************************/
static
int
OpenFilter
(
vlc_object_t
*
);
static
void
CloseFilter
(
vlc_object_t
*
);
static
picture_t
*
Filter
(
filter_t
*
,
picture_t
*
);
/*****************************************************************************
...
...
@@ -48,7 +46,7 @@ static picture_t *Filter( filter_t *, picture_t * );
vlc_module_begin
()
set_description
(
N_
(
"Video scaling filter"
)
)
set_capability
(
"video filter2"
,
10
)
set_callbacks
(
OpenFilter
,
CloseFilter
)
set_callbacks
(
OpenFilter
,
NULL
)
vlc_module_end
()
/*****************************************************************************
...
...
@@ -78,14 +76,6 @@ static int OpenFilter( vlc_object_t *p_this )
return
VLC_SUCCESS
;
}
/*****************************************************************************
* CloseFilter: clean up the filter
*****************************************************************************/
static
void
CloseFilter
(
vlc_object_t
*
p_this
)
{
(
void
)
p_this
;
}
/****************************************************************************
* Filter: the whole thing
****************************************************************************/
...
...
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