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
db1da1ba
Commit
db1da1ba
authored
Jul 28, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
filter_chain: remove useless callback
parent
da352496
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
src/misc/filter_chain.c
src/misc/filter_chain.c
+1
-7
No files found.
src/misc/filter_chain.c
View file @
db1da1ba
...
...
@@ -63,11 +63,10 @@ static void AllocatorClean( const filter_chain_allocator_t *,
static
bool
IsInternalVideoAllocator
(
chained_filter_t
*
);
static
int
InternalVideoInit
(
filter_t
*
,
void
*
);
static
void
InternalVideoClean
(
filter_t
*
);
static
const
filter_chain_allocator_t
internal_video_allocator
=
{
.
pf_init
=
InternalVideoInit
,
.
pf_clean
=
InternalVideoClean
,
.
pf_clean
=
NULL
,
.
p_data
=
NULL
,
};
...
...
@@ -611,11 +610,6 @@ static int InternalVideoInit( filter_t *p_filter, void *p_data )
return
VLC_SUCCESS
;
}
static
void
InternalVideoClean
(
filter_t
*
p_filter
)
{
p_filter
->
pf_video_buffer_new
=
NULL
;
p_filter
->
pf_video_buffer_del
=
NULL
;
}
static
bool
IsInternalVideoAllocator
(
chained_filter_t
*
p_filter
)
{
...
...
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