Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
52067b3c
Commit
52067b3c
authored
Dec 05, 2016
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: Drop deprecated filter initialization
Deprecated in 03/2013.
parent
c5c7cfd5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
25 deletions
+0
-25
avfilter.c
libavfilter/avfilter.c
+0
-7
avfilter.h
libavfilter/avfilter.h
+0
-15
version.h
libavfilter/version.h
+0
-3
No files found.
libavfilter/avfilter.c
View file @
52067b3c
...
...
@@ -561,13 +561,6 @@ static int process_unnamed_options(AVFilterContext *ctx, AVDictionary **options,
return
0
;
}
#if FF_API_AVFILTER_INIT_FILTER
int
avfilter_init_filter
(
AVFilterContext
*
filter
,
const
char
*
args
,
void
*
opaque
)
{
return
avfilter_init_str
(
filter
,
args
);
}
#endif
int
avfilter_init_dict
(
AVFilterContext
*
ctx
,
AVDictionary
**
options
)
{
int
ret
=
0
;
...
...
libavfilter/avfilter.h
View file @
52067b3c
...
...
@@ -479,21 +479,6 @@ attribute_deprecated
AVFilter
**
av_filter_next
(
AVFilter
**
filter
);
#endif
#if FF_API_AVFILTER_INIT_FILTER
/**
* Initialize a filter.
*
* @param filter the filter to initialize
* @param args A string of parameters to use when initializing the filter.
* The format and meaning of this string varies by filter.
* @param opaque Any extra non-string data needed by the filter. The meaning
* of this parameter varies by filter.
* @return zero on success
*/
attribute_deprecated
int
avfilter_init_filter
(
AVFilterContext
*
filter
,
const
char
*
args
,
void
*
opaque
);
#endif
/**
* Initialize a filter with the supplied parameters.
*
...
...
libavfilter/version.h
View file @
52067b3c
...
...
@@ -49,9 +49,6 @@
* the public API and may change, break or disappear at any time.
*/
#ifndef FF_API_AVFILTER_INIT_FILTER
#define FF_API_AVFILTER_INIT_FILTER (LIBAVFILTER_VERSION_MAJOR < 7)
#endif
#ifndef FF_API_OLD_FILTER_REGISTER
#define FF_API_OLD_FILTER_REGISTER (LIBAVFILTER_VERSION_MAJOR < 7)
#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