lavfi: do not export the filters from shared objects
This commit is contained in:
@@ -25,15 +25,15 @@
|
||||
|
||||
#define REGISTER_FILTER(X, x, y) \
|
||||
{ \
|
||||
extern AVFilter avfilter_##y##_##x; \
|
||||
extern AVFilter ff_##y##_##x; \
|
||||
if (CONFIG_##X##_FILTER) \
|
||||
avfilter_register(&avfilter_##y##_##x); \
|
||||
avfilter_register(&ff_##y##_##x); \
|
||||
}
|
||||
|
||||
#define REGISTER_FILTER_UNCONDITIONAL(x) \
|
||||
{ \
|
||||
extern AVFilter avfilter_##x; \
|
||||
avfilter_register(&avfilter_##x); \
|
||||
extern AVFilter ff_##x; \
|
||||
avfilter_register(&ff_##x); \
|
||||
}
|
||||
|
||||
void avfilter_register_all(void)
|
||||
|
Reference in New Issue
Block a user