]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/avfiltergraph.c
Deprecate av_parse_video_frame_size() and av_parse_video_frame_rate()
[ffmpeg] / libavfilter / avfiltergraph.c
index 5211c762e1846153d68261b1c7f730035c10a564..6f219a62b5d321e144d0e58ccad8ee82859df92c 100644 (file)
@@ -1,5 +1,6 @@
 /*
- * Filter graphs
+ * filter graphs
+ * copyright (c) 2008 Vitor Sessak
  * copyright (c) 2007 Bobby Bingham
  *
  * This file is part of FFmpeg.
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include <ctype.h>
 #include <string.h>
-#include <stddef.h>
 
 #include "avfilter.h"
 #include "avfiltergraph.h"
 
-struct AVFilterGraph {
-    unsigned filter_count;
-    AVFilterContext **filters;
-};
-
-AVFilterGraph *avfilter_create_graph(void)
+void avfilter_graph_destroy(AVFilterGraph *graph)
 {
-    return av_mallocz(sizeof(AVFilterGraph));
+    for(; graph->filter_count > 0; graph->filter_count --)
+        avfilter_destroy(graph->filters[graph->filter_count - 1]);
+    av_freep(&graph->scale_sws_opts);
+    av_freep(&graph->filters);
 }
 
-static void destroy_graph_filters(AVFilterGraph *graph)
+int avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter)
 {
-    unsigned i;
+    AVFilterContext **filters = av_realloc(graph->filters,
+                                           sizeof(AVFilterContext*) * (graph->filter_count+1));
+    if (!filters)
+        return AVERROR(ENOMEM);
 
-    for(i = 0; i < graph->filter_count; i ++)
-        avfilter_destroy(graph->filters[i]);
-    av_freep(&graph->filters);
-}
+    graph->filters = filters;
+    graph->filters[graph->filter_count++] = filter;
 
-void avfilter_destroy_graph(AVFilterGraph *graph)
-{
-    destroy_graph_filters(graph);
-    av_free(graph);
+    return 0;
 }
 
-void avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter)
+int avfilter_graph_check_validity(AVFilterGraph *graph, AVClass *log_ctx)
 {
-    graph->filters = av_realloc(graph->filters,
-                                sizeof(AVFilterContext*) * ++graph->filter_count);
-    graph->filters[graph->filter_count - 1] = filter;
+    AVFilterContext *filt;
+    int i, j;
+
+    for (i=0; i < graph->filter_count; i++) {
+        filt = graph->filters[i];
+
+        for (j = 0; j < filt->input_count; j++) {
+            if (!filt->inputs[j] || !filt->inputs[j]->src) {
+                av_log(log_ctx, AV_LOG_ERROR,
+                       "Input pad \"%s\" for the filter \"%s\" of type \"%s\" not connected to any source\n",
+                       filt->input_pads[j].name, filt->name, filt->filter->name);
+                return -1;
+            }
+        }
+
+        for (j = 0; j < filt->output_count; j++) {
+            if (!filt->outputs[j] || !filt->outputs[j]->dst) {
+                av_log(log_ctx, AV_LOG_ERROR,
+                       "Output pad \"%s\" for the filter \"%s\" of type \"%s\" not connected to any destination\n",
+                       filt->output_pads[j].name, filt->name, filt->filter->name);
+                return -1;
+            }
+        }
+    }
+
+    return 0;
 }
 
-static AVFilterContext *create_filter_with_args(char *filter)
+int avfilter_graph_config_links(AVFilterGraph *graph, AVClass *log_ctx)
 {
-    AVFilterContext *ret;
-    char *name, *args;
+    AVFilterContext *filt;
+    int i, ret;
 
-    name = filter;
-    if((args = strchr(filter, '='))) {
-        /* ensure we at least have a name */
-        if(args == filter)
-            return NULL;
+    for (i=0; i < graph->filter_count; i++) {
+        filt = graph->filters[i];
 
-        *args ++ = 0;
+        if (!filt->output_count) {
+            if ((ret = avfilter_config_links(filt)))
+                return ret;
+        }
     }
 
-    av_log(NULL, AV_LOG_INFO, "creating filter \"%s\" with args \"%s\"\n",
-           name, args ? args : "(none)");
+    return 0;
+}
 
-    if((ret = avfilter_create_by_name(name, NULL))) {
-        if(avfilter_init_filter(ret, args)) {
-            av_log(NULL, AV_LOG_ERROR, "error initializing filter!\n");
-            avfilter_destroy(ret);
-            ret = NULL;
-        }
-    } else av_log(NULL, AV_LOG_ERROR, "error creating filter!\n");
+AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name)
+{
+    int i;
 
-    return ret;
+    for(i = 0; i < graph->filter_count; i ++)
+        if(graph->filters[i]->name && !strcmp(name, graph->filters[i]->name))
+            return graph->filters[i];
+
+    return NULL;
 }
 
-int avfilter_graph_load_chain(AVFilterGraph *graph,
-                              unsigned count, char **filter_list,
-                              AVFilterContext **first, AVFilterContext **last)
+static int query_formats(AVFilterGraph *graph, AVClass *log_ctx)
 {
-    unsigned i;
-    AVFilterContext *filters[2] = {NULL,NULL};
-
-    for(i = 0; i < count; i ++) {
-        if(!(filters[1] = create_filter_with_args(filter_list[i])))
-            goto fail;
-        if(i == 0) {
-            if(first) *first = filters[1];
-        } else {
-            if(avfilter_link(filters[0], 0, filters[1], 0)) {
-                av_log(NULL, AV_LOG_ERROR, "error linking filters!\n");
-                goto fail;
+    int i, j;
+    int scaler_count = 0;
+    char inst_name[30];
+
+    /* ask all the sub-filters for their supported media formats */
+    for(i = 0; i < graph->filter_count; i ++) {
+        if(graph->filters[i]->filter->query_formats)
+            graph->filters[i]->filter->query_formats(graph->filters[i]);
+        else
+            avfilter_default_query_formats(graph->filters[i]);
+    }
+
+    /* go through and merge as many format lists as possible */
+    for(i = 0; i < graph->filter_count; i ++) {
+        AVFilterContext *filter = graph->filters[i];
+
+        for(j = 0; j < filter->input_count; j ++) {
+            AVFilterLink *link = filter->inputs[j];
+            if(link && link->in_formats != link->out_formats) {
+                if(!avfilter_merge_formats(link->in_formats,
+                                           link->out_formats)) {
+                    AVFilterContext *scale;
+                    char scale_args[256];
+                    /* couldn't merge format lists. auto-insert scale filter */
+                    snprintf(inst_name, sizeof(inst_name), "auto-inserted scaler %d",
+                             scaler_count++);
+                    scale =
+                        avfilter_open(avfilter_get_by_name("scale"),inst_name);
+
+                    snprintf(scale_args, sizeof(scale_args), "0:0:%s", graph->scale_sws_opts);
+                    if(!scale || scale->filter->init(scale, scale_args, NULL) ||
+                                 avfilter_insert_filter(link, scale, 0, 0)) {
+                        avfilter_destroy(scale);
+                        return -1;
+                    }
+
+                    if (avfilter_graph_add_filter(graph, scale) < 0)
+                        return -1;
+
+                    scale->filter->query_formats(scale);
+                    if (((link = scale-> inputs[0]) &&
+                         !avfilter_merge_formats(link->in_formats, link->out_formats)) ||
+                        ((link = scale->outputs[0]) &&
+                         !avfilter_merge_formats(link->in_formats, link->out_formats))) {
+                        av_log(log_ctx, AV_LOG_ERROR,
+                               "Impossible to convert between the formats supported by the filter "
+                               "'%s' and the filter '%s'\n", link->src->name, link->dst->name);
+                        return -1;
+                    }
+                }
             }
         }
-        avfilter_graph_add_filter(graph, filters[1]);
-        filters[0] = filters[1];
     }
 
-    if(last) *last = filters[1];
     return 0;
+}
+
+static void pick_format(AVFilterLink *link)
+{
+    if(!link || !link->in_formats)
+        return;
+
+    link->in_formats->format_count = 1;
+    link->format = link->in_formats->formats[0];
+
+    avfilter_formats_unref(&link->in_formats);
+    avfilter_formats_unref(&link->out_formats);
+}
 
-fail:
-    destroy_graph_filters(graph);
-    *first = *last = NULL;
-    return -1;
+static void pick_formats(AVFilterGraph *graph)
+{
+    int i, j;
+
+    for(i = 0; i < graph->filter_count; i ++) {
+        AVFilterContext *filter = graph->filters[i];
+
+        for(j = 0; j < filter->input_count; j ++)
+            pick_format(filter->inputs[j]);
+        for(j = 0; j < filter->output_count; j ++)
+            pick_format(filter->outputs[j]);
+    }
+}
+
+int avfilter_graph_config_formats(AVFilterGraph *graph, AVClass *log_ctx)
+{
+    /* find supported formats from sub-filters, and merge along links */
+    if(query_formats(graph, log_ctx))
+        return -1;
+
+    /* Once everything is merged, it's possible that we'll still have
+     * multiple valid media format choices. We pick the first one. */
+    pick_formats(graph);
+
+    return 0;
 }