summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2016-12-05 12:43:19 -0500
committerVittorio Giovara <vittorio.giovara@gmail.com>2017-03-23 09:57:33 +0100
commit52067b3c0e5ddbcf7021a093420798420351a9e2 (patch)
treebddbbab3c5306dbcd4903683cf137a373d939a7d /libavfilter/avfilter.h
parentc5c7cfd5e80d4c36568c01cc40abfde341657ad9 (diff)
downloadffmpeg-52067b3c0e5ddbcf7021a093420798420351a9e2.tar.gz
lavfi: Drop deprecated filter initialization
Deprecated in 03/2013.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index babcec66f2..6537a83407 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -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.
*