lavfi: do not export the filters from shared objects

This commit is contained in:
Anton Khirnov
2013-10-28 07:44:24 +01:00
parent feeafb4ada
commit cd43ca0443
56 changed files with 69 additions and 69 deletions

View File

@@ -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)