Commit 5c439b41 authored by Vittorio Giovara's avatar Vittorio Giovara Committed by Anton Khirnov

avfilter: have avfilter_get_by_name return const for next bump

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent 97de206b
......@@ -272,6 +272,9 @@ int ff_poll_frame(AVFilterLink *link)
static AVFilter *first_filter;
#if !FF_API_NOCONST_GET_NAME
const
#endif
AVFilter *avfilter_get_by_name(const char *name)
{
AVFilter *f = NULL;
......
......@@ -764,6 +764,9 @@ int avfilter_register(AVFilter *filter);
* @return the filter definition, if any matching one is registered.
* NULL if none found.
*/
#if !FF_API_NOCONST_GET_NAME
const
#endif
AVFilter *avfilter_get_by_name(const char *name);
/**
......
......@@ -68,5 +68,8 @@
#ifndef FF_API_OLD_FILTER_REGISTER
#define FF_API_OLD_FILTER_REGISTER (LIBAVFILTER_VERSION_MAJOR < 4)
#endif
#ifndef FF_API_NOCONST_GET_NAME
#define FF_API_NOCONST_GET_NAME (LIBAVFILTER_VERSION_MAJOR < 4)
#endif
#endif /* AVFILTER_VERSION_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment