summaryrefslogtreecommitdiff
path: root/libavfilter/allfilters.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-10-28 07:44:24 +0100
committerAnton Khirnov <anton@khirnov.net>2013-10-28 15:29:54 +0100
commitcd43ca0443a298ab8cf9f9567c568f83b67b656c (patch)
tree005fc640a8266b580a19213ccd9c809dd7c180ca /libavfilter/allfilters.c
parentfeeafb4adabd5c17de1738ed9962e40892b20edb (diff)
lavfi: do not export the filters from shared objects
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r--libavfilter/allfilters.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c
index 20407ced22..f041f5c790 100644
--- a/libavfilter/allfilters.c
+++ b/libavfilter/allfilters.c
@@ -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)