diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-10-28 07:44:24 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-10-28 15:29:54 +0100 |
commit | cd43ca0443a298ab8cf9f9567c568f83b67b656c (patch) | |
tree | 005fc640a8266b580a19213ccd9c809dd7c180ca /libavfilter/allfilters.c | |
parent | feeafb4adabd5c17de1738ed9962e40892b20edb (diff) | |
download | ffmpeg-cd43ca0443a298ab8cf9f9567c568f83b67b656c.tar.gz |
lavfi: do not export the filters from shared objects
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 8 |
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) |