[FFmpeg-devel] [PATCH 02/17] lavfi: export ff_filter_set_ready() to the library.

Nicolas George george at nsup.org
Sat Dec 24 19:41:34 EET 2016


Signed-off-by: Nicolas George <george at nsup.org>
---
 libavfilter/avfilter.c | 2 +-
 libavfilter/internal.h | 5 +++++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index c1858fb6a0..191554eb6d 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -189,7 +189,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);
 }
diff --git a/libavfilter/internal.h b/libavfilter/internal.h
index 13666bc330..3c09032610 100644
--- a/libavfilter/internal.h
+++ b/libavfilter/internal.h
@@ -614,6 +614,11 @@ static inline int ff_norm_qscale(int qscale, int type)
 int ff_filter_get_nb_threads(AVFilterContext *ctx);
 
 /**
+ * Mark a filter ready and schedule it for activation.
+ */
+void ff_filter_set_ready(AVFilterContext *filter, unsigned priority);
+
+/**
  * Test and acknowledge the change of status on the link.
  * @return  >0 if status changed, 0 otherwise, <0 if status already acked
  */
-- 
2.11.0



More information about the ffmpeg-devel mailing list