summaryrefslogtreecommitdiff
path: root/libavfilter/avfilter.c
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2016-12-20 15:57:19 +0100
committerNicolas George <george@nsup.org>2017-01-12 14:06:16 +0100
commit918891e1468f34b9f52423e1779f909ddd9dc34d (patch)
tree2a7b6b575d4e1beb1fecc7dcc38433a44fde53f9 /libavfilter/avfilter.c
parent4c24f3ac166a0138cd33de71674ab8b383f41e30 (diff)
lavfi: export ff_filter_set_ready() to the library.
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index f3dea6e65e..823e1ba9c5 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -190,7 +190,7 @@ int avfilter_link_get_channels(AVFilterLink *link)
return link->channels;
}
-static void ff_filter_set_ready(AVFilterContext *filter, unsigned priority)
+void ff_filter_set_ready(AVFilterContext *filter, unsigned priority)
{
filter->ready = FFMAX(filter->ready, priority);
}