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/buffersink.c | |
parent | feeafb4adabd5c17de1738ed9962e40892b20edb (diff) | |
download | ffmpeg-cd43ca0443a298ab8cf9f9567c568f83b67b656c.tar.gz |
lavfi: do not export the filters from shared objects
Diffstat (limited to 'libavfilter/buffersink.c')
-rw-r--r-- | libavfilter/buffersink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/buffersink.c b/libavfilter/buffersink.c index 30fb429c64..2a22948b38 100644 --- a/libavfilter/buffersink.c +++ b/libavfilter/buffersink.c @@ -221,7 +221,7 @@ static const AVFilterPad avfilter_vsink_buffer_inputs[] = { { NULL } }; -AVFilter avfilter_vsink_buffer = { +AVFilter ff_vsink_buffer = { .name = "buffersink", .description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."), .priv_size = sizeof(BufferSinkContext), @@ -241,7 +241,7 @@ static const AVFilterPad avfilter_asink_abuffer_inputs[] = { { NULL } }; -AVFilter avfilter_asink_abuffer = { +AVFilter ff_asink_abuffer = { .name = "abuffersink", .description = NULL_IF_CONFIG_SMALL("Buffer audio frames, and make them available to the end of the filter graph."), .priv_size = sizeof(BufferSinkContext), |