Move to rtp.h the prototypes of all the functions defined in rtp.c
[ffmpeg-lucabe.git] / libavfilter / avfiltergraph.c
blob72c0fd2ca25848fde05e8a74a3f32defd7b2ee0d
1 /*
2 * filter graphs
3 * copyright (c) 2008 Vitor Sessak
4 * copyright (c) 2007 Bobby Bingham
6 * This file is part of FFmpeg.
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include <ctype.h>
24 #include <string.h>
26 #include "avfilter.h"
27 #include "avfiltergraph.h"
29 void avfilter_destroy_graph(AVFilterGraph *graph)
31 for(; graph->filter_count > 0; graph->filter_count --)
32 avfilter_destroy(graph->filters[graph->filter_count - 1]);
33 av_freep(&graph->filters);
36 int avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter)
38 graph->filters = av_realloc(graph->filters,
39 sizeof(AVFilterContext*) * ++graph->filter_count);
41 if (!graph->filters)
42 return -1;
44 graph->filters[graph->filter_count - 1] = filter;
46 return 0;
49 int avfilter_graph_check_validity(AVFilterGraph *graph, AVClass *log_ctx)
51 AVFilterContext *filt;
52 int i, j;
54 for (i=0; i < graph->filter_count; i++) {
55 filt = graph->filters[i];
57 for (j = 0; j < filt->input_count; j++) {
58 if (!filt->inputs[j] || !filt->inputs[j]->src) {
59 av_log(log_ctx, AV_LOG_ERROR,
60 "Input pad \"%s\" for the filter \"%s\" of type \"%s\" not connected to any source\n",
61 filt->input_pads[j].name, filt->name, filt->filter->name);
62 return -1;
66 for (j = 0; j < filt->output_count; j++) {
67 if (!filt->outputs[j] || !filt->outputs[j]->dst) {
68 av_log(log_ctx, AV_LOG_ERROR,
69 "Output pad \"%s\" for the filter \"%s\" of type \"%s\" not connected to any destination\n",
70 filt->output_pads[j].name, filt->name, filt->filter->name);
71 return -1;
76 return 0;
79 AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name)
81 int i;
83 for(i = 0; i < graph->filter_count; i ++)
84 if(graph->filters[i]->name && !strcmp(name, graph->filters[i]->name))
85 return graph->filters[i];
87 return NULL;
90 static int query_formats(AVFilterGraph *graph)
92 int i, j;
93 int scaler_count = 0;
94 char inst_name[30];
96 /* ask all the sub-filters for their supported colorspaces */
97 for(i = 0; i < graph->filter_count; i ++) {
98 if(graph->filters[i]->filter->query_formats)
99 graph->filters[i]->filter->query_formats(graph->filters[i]);
100 else
101 avfilter_default_query_formats(graph->filters[i]);
104 /* go through and merge as many format lists as possible */
105 for(i = 0; i < graph->filter_count; i ++) {
106 AVFilterContext *filter = graph->filters[i];
108 for(j = 0; j < filter->input_count; j ++) {
109 AVFilterLink *link = filter->inputs[j];
110 if(link && link->in_formats != link->out_formats) {
111 if(!avfilter_merge_formats(link->in_formats,
112 link->out_formats)) {
113 AVFilterContext *scale;
114 /* couldn't merge format lists. auto-insert scale filter */
115 snprintf(inst_name, sizeof(inst_name), "auto-inserted scaler %d",
116 scaler_count);
117 scale =
118 avfilter_open(avfilter_get_by_name("scale"),inst_name);
120 if(!scale || scale->filter->init(scale, NULL, NULL) ||
121 avfilter_insert_filter(link, scale, 0, 0)) {
122 avfilter_destroy(scale);
123 return -1;
126 if (avfilter_graph_add_filter(graph, scale) < 0)
127 return -1;
129 scale->filter->query_formats(scale);
130 if(!avfilter_merge_formats(scale-> inputs[0]->in_formats,
131 scale-> inputs[0]->out_formats)||
132 !avfilter_merge_formats(scale->outputs[0]->in_formats,
133 scale->outputs[0]->out_formats))
134 return -1;
140 return 0;
143 static void pick_format(AVFilterLink *link)
145 if(!link || !link->in_formats)
146 return;
148 link->in_formats->format_count = 1;
149 link->format = link->in_formats->formats[0];
151 avfilter_formats_unref(&link->in_formats);
152 avfilter_formats_unref(&link->out_formats);
155 static void pick_formats(AVFilterGraph *graph)
157 int i, j;
159 for(i = 0; i < graph->filter_count; i ++) {
160 AVFilterContext *filter = graph->filters[i];
162 for(j = 0; j < filter->input_count; j ++)
163 pick_format(filter->inputs[j]);
164 for(j = 0; j < filter->output_count; j ++)
165 pick_format(filter->outputs[j]);
169 int avfilter_graph_config_formats(AVFilterGraph *graph)
171 /* find supported formats from sub-filters, and merge along links */
172 if(query_formats(graph))
173 return -1;
175 /* Once everything is merged, it's possible that we'll still have
176 * multiple valid colorspace choices. We pick the first one. */
177 pick_formats(graph);
179 return 0;