]> git.sesse.net Git - ffmpeg/blob - libavfilter/graphparser.c
Sort lavfi pixdesc tests.
[ffmpeg] / libavfilter / graphparser.c
1 /*
2  * filter graph parser
3  * copyright (c) 2008 Vitor Sessak
4  * copyright (c) 2007 Bobby Bingham
5  *
6  * This file is part of FFmpeg.
7  *
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.
12  *
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.
17  *
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
21  */
22
23 #include <ctype.h>
24 #include <string.h>
25
26 #include "graphparser.h"
27 #include "avfilter.h"
28 #include "avfiltergraph.h"
29 #include "parseutils.h"
30
31 #define WHITESPACES " \n\t"
32
33 /**
34  * Link two filters together.
35  *
36  * @see avfilter_link()
37  */
38 static int link_filter(AVFilterContext *src, int srcpad,
39                        AVFilterContext *dst, int dstpad,
40                        AVClass *log_ctx)
41 {
42     int ret;
43     if ((ret = avfilter_link(src, srcpad, dst, dstpad))) {
44         av_log(log_ctx, AV_LOG_ERROR,
45                "Cannot create the link %s:%d -> %s:%d\n",
46                src->filter->name, srcpad, dst->filter->name, dstpad);
47         return ret;
48     }
49
50     return 0;
51 }
52
53 /**
54  * Parse the name of a link, which has the format "[linkname]".
55  *
56  * @return a pointer (that need to be freed after use) to the name
57  * between parenthesis
58  */
59 static char *parse_link_name(const char **buf, AVClass *log_ctx)
60 {
61     const char *start = *buf;
62     char *name;
63     (*buf)++;
64
65     name = av_get_token(buf, "]");
66
67     if (!name[0]) {
68         av_log(log_ctx, AV_LOG_ERROR,
69                "Bad (empty?) label found in the following: \"%s\".\n", start);
70         goto fail;
71     }
72
73     if (*(*buf)++ != ']') {
74         av_log(log_ctx, AV_LOG_ERROR,
75                "Mismatched '[' found in the following: \"%s\".\n", start);
76     fail:
77         av_freep(&name);
78     }
79
80     return name;
81 }
82
83 /**
84  * Create an instance of a filter, initialize and insert it in the
85  * filtergraph in *ctx.
86  *
87  * @param ctx the filtergraph context
88  * @param index an index which is supposed to be unique for each filter instance added to the filtergraph
89  * @param filt_name the name of the filter to create
90  * @param args the arguments provided to the filter during its initialization
91  * @param log_ctx the log context to use
92  * @return a filter context in case of successful creation and configuration, NULL otherwise.
93  */
94 static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
95                                       const char *filt_name, const char *args,
96                                       AVClass *log_ctx)
97 {
98     AVFilterContext *filt_ctx;
99
100     AVFilter *filt;
101     char inst_name[30];
102     char tmp_args[256];
103
104     snprintf(inst_name, sizeof(inst_name), "Filter %d %s", index, filt_name);
105
106     filt = avfilter_get_by_name(filt_name);
107
108     if (!filt) {
109         av_log(log_ctx, AV_LOG_ERROR,
110                "No such filter: '%s'\n", filt_name);
111         return NULL;
112     }
113
114     filt_ctx = avfilter_open(filt, inst_name);
115     if (!filt_ctx) {
116         av_log(log_ctx, AV_LOG_ERROR,
117                "Error creating filter '%s'\n", filt_name);
118         return NULL;
119     }
120
121     if (avfilter_graph_add_filter(ctx, filt_ctx) < 0) {
122         avfilter_destroy(filt_ctx);
123         return NULL;
124     }
125
126     if (!strcmp(filt_name, "scale") && !strstr(args, "flags")) {
127         snprintf(tmp_args, sizeof(tmp_args), "%s:%s",
128                  args, ctx->scale_sws_opts);
129         args = tmp_args;
130     }
131
132     if (avfilter_init_filter(filt_ctx, args, NULL)) {
133         av_log(log_ctx, AV_LOG_ERROR,
134                "Error initializing filter '%s' with args '%s'\n", filt_name, args);
135         return NULL;
136     }
137
138     return filt_ctx;
139 }
140
141 /**
142  * Parse "filter=params"
143  */
144 static AVFilterContext *parse_filter(const char **buf, AVFilterGraph *graph,
145                                      int index, AVClass *log_ctx)
146 {
147     char *opts = NULL;
148     char *name = av_get_token(buf, "=,;[\n");
149     AVFilterContext *ret;
150
151     if (**buf == '=') {
152         (*buf)++;
153         opts = av_get_token(buf, "[],;\n");
154     }
155
156     ret = create_filter(graph, index, name, opts, log_ctx);
157     av_free(name);
158     av_free(opts);
159     return ret;
160 }
161
162 static void free_inout(AVFilterInOut *head)
163 {
164     while (head) {
165         AVFilterInOut *next = head->next;
166         av_free(head->name);
167         av_free(head);
168         head = next;
169     }
170 }
171
172 static AVFilterInOut *extract_inout(const char *label, AVFilterInOut **links)
173 {
174     AVFilterInOut *ret;
175
176     while (*links && strcmp((*links)->name, label))
177         links = &((*links)->next);
178
179     ret = *links;
180
181     if (ret)
182         *links = ret->next;
183
184     return ret;
185 }
186
187 static void insert_inout(AVFilterInOut **inouts, AVFilterInOut *element)
188 {
189     element->next = *inouts;
190     *inouts = element;
191 }
192
193 static int link_filter_inouts(AVFilterContext *filter,
194                               AVFilterInOut **curr_inputs,
195                               AVFilterInOut **open_inputs, AVClass *log_ctx)
196 {
197     int pad = filter->input_count;
198
199     while (pad--) {
200         AVFilterInOut *p = *curr_inputs;
201         if (!p) {
202             av_log(log_ctx, AV_LOG_ERROR,
203                    "Not enough inputs specified for the \"%s\" filter.\n",
204                    filter->filter->name);
205             return -1;
206         }
207
208         *curr_inputs = (*curr_inputs)->next;
209
210         if (p->filter) {
211             if (link_filter(p->filter, p->pad_idx, filter, pad, log_ctx))
212                 return -1;
213             av_free(p->name);
214             av_free(p);
215         } else {
216             p->filter = filter;
217             p->pad_idx = pad;
218             insert_inout(open_inputs, p);
219         }
220     }
221
222     if (*curr_inputs) {
223         av_log(log_ctx, AV_LOG_ERROR,
224                "Too many inputs specified for the \"%s\" filter.\n",
225                filter->filter->name);
226         return -1;
227     }
228
229     pad = filter->output_count;
230     while (pad--) {
231         AVFilterInOut *currlinkn = av_mallocz(sizeof(AVFilterInOut));
232         currlinkn->filter  = filter;
233         currlinkn->pad_idx = pad;
234         insert_inout(curr_inputs, currlinkn);
235     }
236
237     return 0;
238 }
239
240 static int parse_inputs(const char **buf, AVFilterInOut **curr_inputs,
241                         AVFilterInOut **open_outputs, AVClass *log_ctx)
242 {
243     int pad = 0;
244
245     while (**buf == '[') {
246         char *name = parse_link_name(buf, log_ctx);
247         AVFilterInOut *match;
248
249         if (!name)
250             return -1;
251
252         /* First check if the label is not in the open_outputs list */
253         match = extract_inout(name, open_outputs);
254
255         if (match) {
256             av_free(name);
257         } else {
258             /* Not in the list, so add it as an input */
259             match = av_mallocz(sizeof(AVFilterInOut));
260             match->name    = name;
261             match->pad_idx = pad;
262         }
263
264         insert_inout(curr_inputs, match);
265
266         *buf += strspn(*buf, WHITESPACES);
267         pad++;
268     }
269
270     return pad;
271 }
272
273 static int parse_outputs(const char **buf, AVFilterInOut **curr_inputs,
274                          AVFilterInOut **open_inputs,
275                          AVFilterInOut **open_outputs, AVClass *log_ctx)
276 {
277     int pad = 0;
278
279     while (**buf == '[') {
280         char *name = parse_link_name(buf, log_ctx);
281         AVFilterInOut *match;
282
283         AVFilterInOut *input = *curr_inputs;
284         *curr_inputs = (*curr_inputs)->next;
285
286         if (!name)
287             return -1;
288
289         /* First check if the label is not in the open_inputs list */
290         match = extract_inout(name, open_inputs);
291
292         if (match) {
293             if (link_filter(input->filter, input->pad_idx,
294                             match->filter, match->pad_idx, log_ctx) < 0)
295                 return -1;
296             av_free(match->name);
297             av_free(name);
298             av_free(match);
299             av_free(input);
300         } else {
301             /* Not in the list, so add the first input as a open_output */
302             input->name = name;
303             insert_inout(open_outputs, input);
304         }
305         *buf += strspn(*buf, WHITESPACES);
306         pad++;
307     }
308
309     return pad;
310 }
311
312 int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
313                          AVFilterInOut *open_inputs,
314                          AVFilterInOut *open_outputs, AVClass *log_ctx)
315 {
316     int index = 0;
317     char chr = 0;
318
319     AVFilterInOut *curr_inputs = NULL;
320
321     do {
322         AVFilterContext *filter;
323         filters += strspn(filters, WHITESPACES);
324
325         if (parse_inputs(&filters, &curr_inputs, &open_outputs, log_ctx) < 0)
326             goto fail;
327
328         filter = parse_filter(&filters, graph, index, log_ctx);
329
330         if (!filter)
331             goto fail;
332
333         if (filter->input_count == 1 && !curr_inputs && !index) {
334             /* First input can be omitted if it is "[in]" */
335             const char *tmp = "[in]";
336             if(parse_inputs(&tmp, &curr_inputs, &open_outputs, log_ctx) < 0)
337                 goto fail;
338         }
339
340         if (link_filter_inouts(filter, &curr_inputs, &open_inputs, log_ctx) < 0)
341             goto fail;
342
343         if (parse_outputs(&filters, &curr_inputs, &open_inputs, &open_outputs,
344                          log_ctx) < 0)
345             goto fail;
346
347         filters += strspn(filters, WHITESPACES);
348         chr = *filters++;
349
350         if (chr == ';' && curr_inputs) {
351             av_log(log_ctx, AV_LOG_ERROR,
352                    "Could not find a output to link when parsing \"%s\"\n",
353                    filters - 1);
354             goto fail;
355         }
356         index++;
357     } while (chr == ',' || chr == ';');
358
359     if (chr) {
360         av_log(log_ctx, AV_LOG_ERROR,
361                "Unable to parse graph description substring: \"%s\"\n",
362                filters - 1);
363         goto fail;
364     }
365
366     if (open_inputs && !strcmp(open_inputs->name, "out") && curr_inputs) {
367         /* Last output can be omitted if it is "[out]" */
368         const char *tmp = "[out]";
369         if (parse_outputs(&tmp, &curr_inputs, &open_inputs,
370                          &open_outputs, log_ctx) < 0)
371             goto fail;
372     }
373
374     return 0;
375
376  fail:
377     avfilter_graph_destroy(graph);
378     free_inout(open_inputs);
379     free_inout(open_outputs);
380     free_inout(curr_inputs);
381     return -1;
382 }