Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2016-12-05 20:41:49 +0300
committerVittorio Giovara <vittorio.giovara@gmail.com>2017-03-23 11:57:32 +0300
commitc5c7cfd5e80d4c36568c01cc40abfde341657ad9 (patch)
tree77c56dec72fea91b03576a008456c62ae800f86e /libavfilter/avfilter.c
parent88fd836a015a5f3380df74592e440e7d1e5b8000 (diff)
lavfi: Drop deprecated functions to open a filter or a filterchain
Deprecated in 03/2013.
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index d9c204e766..d6bddef4a0 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -475,14 +475,6 @@ err:
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)
{
if (!link)