diff mbox

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

Message ID 20161229143403.2851-2-george@nsup.org
State Accepted
Headers show

Commit Message

Nicolas George Dec. 29, 2016, 2:33 p.m. UTC
Signed-off-by: Nicolas George <george@nsup.org>
---
 libavfilter/avfilter.c | 2 +-
 libavfilter/filters.h  | 5 +++++
 2 files changed, 6 insertions(+), 1 deletion(-)


Changes in this commit: rename ff_link -> ff_inlink and move to filters.h.

Comments

Michael Niedermayer Dec. 29, 2016, 9:39 p.m. UTC | #1
On Thu, Dec 29, 2016 at 03:33:48PM +0100, Nicolas George wrote:
> Signed-off-by: Nicolas George <george@nsup.org>
> ---
>  libavfilter/avfilter.c | 2 +-
>  libavfilter/filters.h  | 5 +++++
>  2 files changed, 6 insertions(+), 1 deletion(-)
> 
> 
> Changes in this commit: rename ff_link -> ff_inlink and move to filters.h.
> 
> 
> diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
> index 47a48998e0..932b499c03 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/filters.h b/libavfilter/filters.h
> index f4a46a023c..bd38506c08 100644
> --- a/libavfilter/filters.h
> +++ b/libavfilter/filters.h
> @@ -28,6 +28,11 @@
>  #include "avfilter.h"
>  
>  /**
> + * Mark a filter ready and schedule it for activation.
> + */
> +void ff_filter_set_ready(AVFilterContext *filter, unsigned priority);

This too is a bit terse, what calls this, when and why
or where is that documented ?

[...]
diff mbox

Patch

diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 47a48998e0..932b499c03 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/filters.h b/libavfilter/filters.h
index f4a46a023c..bd38506c08 100644
--- a/libavfilter/filters.h
+++ b/libavfilter/filters.h
@@ -28,6 +28,11 @@ 
 #include "avfilter.h"
 
 /**
+ * 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.
  * @param[out]  new or current status
  * @return  >0 if status changed, <0 if status already acked, 0 otherwise