Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
c5c7cfd5
Commit
c5c7cfd5
authored
8 years ago
by
Vittorio Giovara
Browse files
Options
Downloads
Patches
Plain Diff
lavfi: Drop deprecated functions to open a filter or a filterchain
Deprecated in 03/2013.
parent
88fd836a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
libavfilter/avfilter.c
+0
-8
0 additions, 8 deletions
libavfilter/avfilter.c
libavfilter/avfilter.h
+0
-30
0 additions, 30 deletions
libavfilter/avfilter.h
libavfilter/avfiltergraph.c
+0
-17
0 additions, 17 deletions
libavfilter/avfiltergraph.c
libavfilter/version.h
+0
-3
0 additions, 3 deletions
libavfilter/version.h
with
0 additions
and
58 deletions
libavfilter/avfilter.c
+
0
−
8
View file @
c5c7cfd5
...
@@ -475,14 +475,6 @@ err:
...
@@ -475,14 +475,6 @@ err:
return
NULL
;
return
NULL
;
}
}
#if FF_API_AVFILTER_OPEN
int
avfilter_open
(
AVFilterContext
**
filter_ctx
,
AVFilter
*
filter
,
const
char
*
inst_name
)
{
*
filter_ctx
=
ff_filter_alloc
(
filter
,
inst_name
);
return
*
filter_ctx
?
0
:
AVERROR
(
ENOMEM
);
}
#endif
static
void
free_link
(
AVFilterLink
*
link
)
static
void
free_link
(
AVFilterLink
*
link
)
{
{
if
(
!
link
)
if
(
!
link
)
...
...
This diff is collapsed.
Click to expand it.
libavfilter/avfilter.h
+
0
−
30
View file @
c5c7cfd5
...
@@ -479,22 +479,6 @@ attribute_deprecated
...
@@ -479,22 +479,6 @@ attribute_deprecated
AVFilter
**
av_filter_next
(
AVFilter
**
filter
);
AVFilter
**
av_filter_next
(
AVFilter
**
filter
);
#endif
#endif
#if FF_API_AVFILTER_OPEN
/**
* Create a filter instance.
*
* @param filter_ctx put here a pointer to the created filter context
* on success, NULL on failure
* @param filter the filter to create an instance of
* @param inst_name Name to give to the new instance. Can be NULL for none.
* @return >= 0 in case of success, a negative error code otherwise
* @deprecated use avfilter_graph_alloc_filter() instead
*/
attribute_deprecated
int
avfilter_open
(
AVFilterContext
**
filter_ctx
,
AVFilter
*
filter
,
const
char
*
inst_name
);
#endif
#if FF_API_AVFILTER_INIT_FILTER
#if FF_API_AVFILTER_INIT_FILTER
/**
/**
* Initialize a filter.
* Initialize a filter.
...
@@ -691,20 +675,6 @@ AVFilterContext *avfilter_graph_alloc_filter(AVFilterGraph *graph,
...
@@ -691,20 +675,6 @@ AVFilterContext *avfilter_graph_alloc_filter(AVFilterGraph *graph,
*/
*/
AVFilterContext
*
avfilter_graph_get_filter
(
AVFilterGraph
*
graph
,
char
*
name
);
AVFilterContext
*
avfilter_graph_get_filter
(
AVFilterGraph
*
graph
,
char
*
name
);
#if FF_API_AVFILTER_OPEN
/**
* Add an existing filter instance to a filter graph.
*
* @param graphctx the filter graph
* @param filter the filter to be added
*
* @deprecated use avfilter_graph_alloc_filter() to allocate a filter in a
* filter graph
*/
attribute_deprecated
int
avfilter_graph_add_filter
(
AVFilterGraph
*
graphctx
,
AVFilterContext
*
filter
);
#endif
/**
/**
* Create and add a filter instance into an existing graph.
* Create and add a filter instance into an existing graph.
* The filter instance is created from the filter filt and inited
* The filter instance is created from the filter filt and inited
...
...
This diff is collapsed.
Click to expand it.
libavfilter/avfiltergraph.c
+
0
−
17
View file @
c5c7cfd5
...
@@ -116,23 +116,6 @@ void avfilter_graph_free(AVFilterGraph **graph)
...
@@ -116,23 +116,6 @@ void avfilter_graph_free(AVFilterGraph **graph)
av_freep
(
graph
);
av_freep
(
graph
);
}
}
#if FF_API_AVFILTER_OPEN
int
avfilter_graph_add_filter
(
AVFilterGraph
*
graph
,
AVFilterContext
*
filter
)
{
AVFilterContext
**
filters
=
av_realloc
(
graph
->
filters
,
sizeof
(
*
filters
)
*
(
graph
->
nb_filters
+
1
));
if
(
!
filters
)
return
AVERROR
(
ENOMEM
);
graph
->
filters
=
filters
;
graph
->
filters
[
graph
->
nb_filters
++
]
=
filter
;
filter
->
graph
=
graph
;
return
0
;
}
#endif
int
avfilter_graph_create_filter
(
AVFilterContext
**
filt_ctx
,
const
AVFilter
*
filt
,
int
avfilter_graph_create_filter
(
AVFilterContext
**
filt_ctx
,
const
AVFilter
*
filt
,
const
char
*
name
,
const
char
*
args
,
void
*
opaque
,
const
char
*
name
,
const
char
*
args
,
void
*
opaque
,
AVFilterGraph
*
graph_ctx
)
AVFilterGraph
*
graph_ctx
)
...
...
This diff is collapsed.
Click to expand it.
libavfilter/version.h
+
0
−
3
View file @
c5c7cfd5
...
@@ -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_AVFILTER_OPEN
#define FF_API_AVFILTER_OPEN (LIBAVFILTER_VERSION_MAJOR < 7)
#endif
#ifndef FF_API_AVFILTER_INIT_FILTER
#ifndef FF_API_AVFILTER_INIT_FILTER
#define FF_API_AVFILTER_INIT_FILTER (LIBAVFILTER_VERSION_MAJOR < 7)
#define FF_API_AVFILTER_INIT_FILTER (LIBAVFILTER_VERSION_MAJOR < 7)
#endif
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment