summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-03-06 18:44:21 +0100
committerJames Almer <jamrial@gmail.com>2021-04-27 10:43:11 -0300
commitec82ff89b600fbe67723f5b22661f0a4e67924ab (patch)
tree145ae5d2ba52ce78df0da9d9b0c73b4537006196 /libavfilter/avfilter.h
parent3a370868dc33061a20d1fd99274e65167d7a78ac (diff)
downloadffmpeg-ec82ff89b600fbe67723f5b22661f0a4e67924ab.tar.gz
avfilter: Remove avfilter_next/avfilter_register API
Deprecated in 8f1382f80e0d4184c54c14afdda6482f050fbba7. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 6e4b2464c5..54fa656b01 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -286,14 +286,6 @@ typedef struct AVFilter {
int flags_internal; ///< Additional flags for avfilter internal use only.
-#if FF_API_NEXT
- /**
- * Used by the filter registration system. Must not be touched by any other
- * code.
- */
- struct AVFilter *next;
-#endif
-
/**
* Make the filter instance process a command.
*
@@ -710,33 +702,6 @@ int avfilter_process_command(AVFilterContext *filter, const char *cmd, const cha
*/
const AVFilter *av_filter_iterate(void **opaque);
-#if FF_API_NEXT
-/** Initialize the filter system. Register all builtin filters. */
-attribute_deprecated
-void avfilter_register_all(void);
-
-/**
- * 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
- * filter can still by instantiated with avfilter_graph_alloc_filter even if it
- * is not registered.
- *
- * @param filter the filter to register
- * @return 0 if the registration was successful, a negative value
- * otherwise
- */
-attribute_deprecated
-int avfilter_register(AVFilter *filter);
-
-/**
- * Iterate over all registered filters.
- * @return If prev is non-NULL, next registered filter after prev or NULL if
- * prev is the last filter. If prev is NULL, return the first registered filter.
- */
-attribute_deprecated
-const AVFilter *avfilter_next(const AVFilter *prev);
-#endif
-
/**
* Get a filter definition matching the given name.
*