From cd43ca0443a298ab8cf9f9567c568f83b67b656c Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 28 Oct 2013 07:44:24 +0100 Subject: lavfi: do not export the filters from shared objects --- libavfilter/allfilters.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavfilter/allfilters.c') 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) -- cgit v1.2.3