Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
8e18328b
Commit
8e18328b
authored
Dec 05, 2016
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: Drop deprecated filter registration
Deprecated in 04/2013.
parent
52067b3c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
32 deletions
+0
-32
avfilter.c
libavfilter/avfilter.c
+0
-11
avfilter.h
libavfilter/avfilter.h
+0
-18
version.h
libavfilter/version.h
+0
-3
No files found.
libavfilter/avfilter.c
View file @
8e18328b
...
@@ -324,17 +324,6 @@ const AVFilter *avfilter_next(const AVFilter *prev)
...
@@ -324,17 +324,6 @@ const AVFilter *avfilter_next(const AVFilter *prev)
return
prev
?
prev
->
next
:
first_filter
;
return
prev
?
prev
->
next
:
first_filter
;
}
}
#if FF_API_OLD_FILTER_REGISTER
AVFilter
**
av_filter_next
(
AVFilter
**
filter
)
{
return
filter
?
&
(
*
filter
)
->
next
:
&
first_filter
;
}
void
avfilter_uninit
(
void
)
{
}
#endif
int
avfilter_pad_count
(
const
AVFilterPad
*
pads
)
int
avfilter_pad_count
(
const
AVFilterPad
*
pads
)
{
{
int
count
;
int
count
;
...
...
libavfilter/avfilter.h
View file @
8e18328b
...
@@ -430,12 +430,6 @@ int avfilter_config_links(AVFilterContext *filter);
...
@@ -430,12 +430,6 @@ int avfilter_config_links(AVFilterContext *filter);
/** Initialize the filter system. Register all builtin filters. */
/** Initialize the filter system. Register all builtin filters. */
void
avfilter_register_all
(
void
);
void
avfilter_register_all
(
void
);
#if FF_API_OLD_FILTER_REGISTER
/** Uninitialize the filter system. Unregister all filters. */
attribute_deprecated
void
avfilter_uninit
(
void
);
#endif
/**
/**
* Register a filter. This is only needed if you plan to use
* Register a filter. This is only needed if you plan to use
* avfilter_get_by_name later to lookup the AVFilter structure by name. A
* avfilter_get_by_name later to lookup the AVFilter structure by name. A
...
@@ -467,18 +461,6 @@ AVFilter *avfilter_get_by_name(const char *name);
...
@@ -467,18 +461,6 @@ AVFilter *avfilter_get_by_name(const char *name);
*/
*/
const
AVFilter
*
avfilter_next
(
const
AVFilter
*
prev
);
const
AVFilter
*
avfilter_next
(
const
AVFilter
*
prev
);
#if FF_API_OLD_FILTER_REGISTER
/**
* If filter is NULL, returns a pointer to the first registered filter pointer,
* if filter is non-NULL, returns the next pointer after filter.
* If the returned pointer points to NULL, the last registered filter
* was already reached.
* @deprecated use avfilter_next()
*/
attribute_deprecated
AVFilter
**
av_filter_next
(
AVFilter
**
filter
);
#endif
/**
/**
* Initialize a filter with the supplied parameters.
* Initialize a filter with the supplied parameters.
*
*
...
...
libavfilter/version.h
View file @
8e18328b
...
@@ -49,9 +49,6 @@
...
@@ -49,9 +49,6 @@
* the public API and may change, break or disappear at any time.
* the public API and may change, break or disappear at any time.
*/
*/
#ifndef FF_API_OLD_FILTER_REGISTER
#define FF_API_OLD_FILTER_REGISTER (LIBAVFILTER_VERSION_MAJOR < 7)
#endif
#ifndef FF_API_NOCONST_GET_NAME
#ifndef FF_API_NOCONST_GET_NAME
#define FF_API_NOCONST_GET_NAME (LIBAVFILTER_VERSION_MAJOR < 7)
#define FF_API_NOCONST_GET_NAME (LIBAVFILTER_VERSION_MAJOR < 7)
#endif
#endif
...
...
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