summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2016-12-05 13:42:27 -0500
committerVittorio Giovara <vittorio.giovara@gmail.com>2017-03-23 09:57:33 +0100
commit8e18328b18e69b38a5feae5d10ad01b403a205b6 (patch)
treee16bdef0fa0e19de06600b36a8119023f780c6ea /libavfilter/avfilter.h
parent52067b3c0e5ddbcf7021a093420798420351a9e2 (diff)
downloadffmpeg-8e18328b18e69b38a5feae5d10ad01b403a205b6.tar.gz
lavfi: Drop deprecated filter registration
Deprecated in 04/2013.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 6537a83407..96d3e31863 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -430,12 +430,6 @@ int avfilter_config_links(AVFilterContext *filter);
/** Initialize the filter system. Register all builtin filters. */
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
* 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);
*/
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.
*