提交 5c439b41 编写于 作者: V Vittorio Giovara 提交者: Anton Khirnov

avfilter: have avfilter_get_by_name return const for next bump

Signed-off-by: NAnton Khirnov <anton@khirnov.net>
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册