]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavfilter/graphparser.c
Merge variable initialization and declaration
[frescor/ffmpeg.git] / 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
30 static int link_filter(AVFilterContext *src, int srcpad,
31                        AVFilterContext *dst, int dstpad,
32                        AVClass *log_ctx)
33 {
34     if(avfilter_link(src, srcpad, dst, dstpad)) {
35         av_log(log_ctx, AV_LOG_ERROR,
36                "cannot create the link %s:%d -> %s:%d\n",
37                src->filter->name, srcpad, dst->filter->name, dstpad);
38         return -1;
39     }
40
41     return 0;
42 }
43
44 static int consume_whitespace(const char *buf)
45 {
46     return strspn(buf, " \n\t");
47 }
48
49 /**
50  * Consumes a string from *buf.
51  * @return a copy of the consumed string, which should be free'd after use
52  */
53 static char *consume_string(const char **buf)
54 {
55     char *out = av_malloc(strlen(*buf) + 1);
56     char *ret = out;
57
58     *buf += consume_whitespace(*buf);
59
60     do{
61         char c = *(*buf)++;
62         switch (c) {
63         case '\\':
64             *out++ = *(*buf)++;
65             break;
66         case '\'':
67             while(**buf && **buf != '\'')
68                 *out++ = *(*buf)++;
69             if(**buf) (*buf)++;
70             break;
71         case 0:
72         case ']':
73         case '[':
74         case '=':
75         case ',':
76         case ';':
77         case ' ':
78         case '\n':
79             *out++ = 0;
80             break;
81         default:
82             *out++ = c;
83         }
84     } while(out[-1]);
85
86     (*buf)--;
87     *buf += consume_whitespace(*buf);
88
89     return ret;
90 }
91
92 /**
93  * Parse "[linkname]"
94  * @param name a pointer (that need to be free'd after use) to the name between
95  *        parenthesis
96  */
97 static char *parse_link_name(const char **buf, AVClass *log_ctx)
98 {
99     const char *start = *buf;
100     char *name;
101     (*buf)++;
102
103     name = consume_string(buf);
104
105     if(!name[0]) {
106         av_log(log_ctx, AV_LOG_ERROR,
107                "Bad (empty?) label found in the following: \"%s\".\n", start);
108         goto fail;
109     }
110
111     if(*(*buf)++ != ']') {
112         av_log(log_ctx, AV_LOG_ERROR,
113                "Mismatched '[' found in the following: \"%s\".\n", start);
114     fail:
115         av_freep(&name);
116     }
117
118     return name;
119 }
120
121 static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
122                                       const char *name, const char *args,
123                                       AVClass *log_ctx)
124 {
125     AVFilterContext *filt;
126
127     AVFilter *filterdef;
128     char inst_name[30];
129
130     snprintf(inst_name, sizeof(inst_name), "Parsed filter %d", index);
131
132     filterdef = avfilter_get_by_name(name);
133
134     if(!filterdef) {
135         av_log(log_ctx, AV_LOG_ERROR,
136                "no such filter: '%s'\n", name);
137         return NULL;
138     }
139
140     filt = avfilter_open(filterdef, inst_name);
141     if(!filt) {
142         av_log(log_ctx, AV_LOG_ERROR,
143                "error creating filter '%s'\n", name);
144         return NULL;
145     }
146
147     if(avfilter_graph_add_filter(ctx, filt) < 0)
148         return NULL;
149
150     if(avfilter_init_filter(filt, args, NULL)) {
151         av_log(log_ctx, AV_LOG_ERROR,
152                "error initializing filter '%s' with args '%s'\n", name, args);
153         return NULL;
154     }
155
156     return filt;
157 }
158
159 /**
160  * Parse "filter=params"
161  */
162 static AVFilterContext *parse_filter(const char **buf, AVFilterGraph *graph,
163                                      int index, AVClass *log_ctx)
164 {
165     char *opts = NULL;
166     char *name = consume_string(buf);
167
168     if(**buf == '=') {
169         (*buf)++;
170         opts = consume_string(buf);
171     }
172
173     return create_filter(graph, index, name, opts, log_ctx);
174 }
175
176 static void free_inout(AVFilterInOut *head)
177 {
178     while(head) {
179         AVFilterInOut *next = head->next;
180         av_free(head);
181         head = next;
182     }
183 }
184
185 static AVFilterInOut *extract_inout(const char *label, AVFilterInOut **links)
186 {
187     AVFilterInOut *ret;
188
189     while(*links && strcmp((*links)->name, label))
190         links = &((*links)->next);
191
192     ret = *links;
193
194     if(ret)
195         *links = ret->next;
196
197     return ret;
198 }
199
200 static void insert_inout(AVFilterInOut **inouts, AVFilterInOut *element)
201 {
202     element->next = *inouts;
203     *inouts = element;
204 }
205
206 static int link_filter_inouts(AVFilterContext *filter,
207                               AVFilterInOut **currInputs,
208                               AVFilterInOut **openLinks, AVClass *log_ctx)
209 {
210     int pad = filter->input_count;
211
212     while(pad--) {
213         AVFilterInOut *p = *currInputs;
214         *currInputs = (*currInputs)->next;
215         if(!p) {
216             av_log(log_ctx, AV_LOG_ERROR,
217                    "Not enough inputs specified for the \"%s\" filter.\n",
218                    filter->filter->name);
219             return -1;
220         }
221
222         if(p->filter) {
223             if(link_filter(p->filter, p->pad_idx, filter, pad, log_ctx))
224                 return -1;
225             av_free(p);
226         } else {
227             p->filter = filter;
228             p->pad_idx = pad;
229             insert_inout(openInputs, p);
230         }
231     }
232
233     if(*currInputs) {
234         av_log(log_ctx, AV_LOG_ERROR,
235                "Too many inputs specified for the \"%s\" filter.\n",
236                filter->filter->name);
237         return -1;
238     }
239
240     pad = filter->output_count;
241     while(pad--) {
242         AVFilterInOut *currlinkn = av_mallocz(sizeof(AVFilterInOut));
243         currlinkn->type    = LinkTypeOut;
244         currlinkn->filter  = filter;
245         currlinkn->pad_idx = pad;
246         insert_inout(currInputs, currlinkn);
247     }
248
249     return 0;
250 }
251
252 static int parse_inputs(const char **buf, AVFilterInOut **currInputs,
253                         AVFilterInOut **openLinks, AVClass *log_ctx)
254 {
255     int pad = 0;
256
257     while(**buf == '[') {
258         char *name = parse_link_name(buf, log_ctx);
259         AVFilterInOut *match;
260
261         if(!name)
262             return -1;
263
264         /* First check if the label is not in the openLinks list */
265         match = extract_inout(name, openLinks);
266
267         if(match) {
268             /* A label of a open link. Make it one of the inputs of the next
269                filter */
270             if(match->type != LinkTypeOut) {
271                 av_log(log_ctx, AV_LOG_ERROR,
272                        "Label \"%s\" appears twice as input!\n", match->name);
273                 return -1;
274             }
275         } else {
276             /* Not in the list, so add it as an input */
277             match = av_mallocz(sizeof(AVFilterInOut));
278             match->name    = name;
279             match->type    = LinkTypeIn;
280             match->pad_idx = pad;
281         }
282
283         insert_inout(currInputs, match);
284
285         *buf += consume_whitespace(*buf);
286         pad++;
287     }
288
289     return pad;
290 }
291
292 static int parse_outputs(const char **buf, AVFilterInOut **currInputs,
293                          AVFilterInOut **openLinks, AVClass *log_ctx)
294 {
295     int pad = 0;
296
297     while(**buf == '[') {
298         char *name = parse_link_name(buf, log_ctx);
299         AVFilterInOut *match;
300
301         AVFilterInOut *input = *currInputs;
302         *currInputs = (*currInputs)->next;
303
304         if(!name)
305             return -1;
306
307         /* First check if the label is not in the openLinks list */
308         match = extract_inout(name, openLinks);
309
310         if(match) {
311             /* A label of a open link. Link it. */
312             if(match->type != LinkTypeIn) {
313                 av_log(log_ctx, AV_LOG_ERROR,
314                        "Label \"%s\" appears twice as output!\n", match->name);
315                 return -1;
316             }
317
318             if(link_filter(input->filter, input->pad_idx,
319                            match->filter, match->pad_idx, log_ctx) < 0)
320                 return -1;
321             av_free(match);
322             av_free(input);
323         } else {
324             /* Not in the list, so add the first input as a openLink */
325             input->next = *openLinks;
326             input->type = LinkTypeOut;
327             input->name = name;
328             insert_inout(openOutputs, input);
329         }
330         *buf += consume_whitespace(*buf);
331         pad++;
332     }
333
334     return pad;
335 }
336
337 int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
338                          AVFilterInOut *openLinks, AVClass *log_ctx)
339 {
340     int index = 0;
341     char chr = 0;
342
343     AVFilterInOut *currInputs = NULL;
344
345     do {
346         AVFilterContext *filter;
347         filters += consume_whitespace(filters);
348
349         if(parse_inputs(&filters, &currInputs, &openLinks, log_ctx) < 0)
350             goto fail;
351
352         filter = parse_filter(&filters, graph, index, log_ctx);
353
354         if(!filter)
355             goto fail;
356
357         if(filter->input_count == 1 && !currInputs && !index) {
358             /* First input can be ommitted if it is "[in]" */
359             const char *tmp = "[in]";
360             if(parse_inputs(&tmp, &currInputs, &openLinks, log_ctx))
361                 goto fail;
362         }
363
364         if(link_filter_inouts(filter, &currInputs, &openLinks, log_ctx) < 0)
365             goto fail;
366
367         if(parse_outputs(&filters, &currInputs, &openLinks, log_ctx))
368             goto fail;
369
370         filters += consume_whitespace(filters);
371         chr = *filters++;
372
373         if(chr == ';' && currInputs) {
374             av_log(log_ctx, AV_LOG_ERROR,
375                    "Could not find a output to link when parsing \"%s\"\n",
376                    filters - 1);
377             goto fail;
378         }
379         index++;
380     } while(chr == ',' || chr == ';');
381
382     if(openLinks && !strcmp(openLinks->name, "out") && currInputs) {
383         /* Last output can be ommitted if it is "[out]" */
384         const char *tmp = "[out]";
385         if(parse_outputs(&tmp, &currInputs, &openLinks, log_ctx) < 0)
386             goto fail;
387     }
388
389     return 0;
390
391  fail:
392     avfilter_destroy_graph(graph);
393     free_inout(openLinks);
394     free_inout(currInputs);
395     return -1;
396 }