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
26 #include "graphparser.h"
28 #include "avfiltergraph.h"
30 static int link_filter(AVFilterContext *src, int srcpad,
31 AVFilterContext *dst, int dstpad,
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);
44 static int consume_whitespace(const char *buf)
46 return strspn(buf, " \n\t");
50 * Consumes a string from *buf.
51 * @return a copy of the consumed string, which should be free'd after use
53 static char *consume_string(const char **buf)
55 char *out = av_malloc(strlen(*buf) + 1);
58 *buf += consume_whitespace(*buf);
67 while(**buf && **buf != '\'')
87 *buf += consume_whitespace(*buf);
94 * @param name a pointer (that need to be free'd after use) to the name between
97 static char *parse_link_name(const char **buf, AVClass *log_ctx)
99 const char *start = *buf;
103 name = consume_string(buf);
106 av_log(log_ctx, AV_LOG_ERROR,
107 "Bad (empty?) label found in the following: \"%s\".\n", start);
111 if(*(*buf)++ != ']') {
112 av_log(log_ctx, AV_LOG_ERROR,
113 "Mismatched '[' found in the following: \"%s\".\n", start);
121 static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
122 const char *name, const char *args,
125 AVFilterContext *filt;
130 snprintf(inst_name, sizeof(inst_name), "Parsed filter %d", index);
132 filterdef = avfilter_get_by_name(name);
135 av_log(log_ctx, AV_LOG_ERROR,
136 "no such filter: '%s'\n", name);
140 filt = avfilter_open(filterdef, inst_name);
142 av_log(log_ctx, AV_LOG_ERROR,
143 "error creating filter '%s'\n", name);
147 if(avfilter_graph_add_filter(ctx, filt) < 0)
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);
160 * Parse "filter=params"
162 static AVFilterContext *parse_filter(const char **buf, AVFilterGraph *graph,
163 int index, AVClass *log_ctx)
166 char *name = consume_string(buf);
170 opts = consume_string(buf);
173 return create_filter(graph, index, name, opts, log_ctx);
176 static void free_inout(AVFilterInOut *head)
179 AVFilterInOut *next = head->next;
185 static AVFilterInOut *extract_inout(const char *label, AVFilterInOut **links)
189 while(*links && strcmp((*links)->name, label))
190 links = &((*links)->next);
200 static void insert_inout(AVFilterInOut **inouts, AVFilterInOut *element)
202 element->next = *inouts;
206 static int link_filter_inouts(AVFilterContext *filter,
207 AVFilterInOut **currInputs,
208 AVFilterInOut **openLinks, AVClass *log_ctx)
212 pad = filter->input_count;
214 AVFilterInOut *p = *currInputs;
215 *currInputs = (*currInputs)->next;
217 av_log(log_ctx, AV_LOG_ERROR,
218 "Not enough inputs specified for the \"%s\" filter.\n",
219 filter->filter->name);
224 if(link_filter(p->filter, p->pad_idx, filter, pad, log_ctx))
230 insert_inout(openInputs, p);
236 av_log(log_ctx, AV_LOG_ERROR,
237 "Too many inputs specified for the \"%s\" filter.\n",
238 filter->filter->name);
242 pad = filter->output_count;
244 AVFilterInOut *currlinkn = av_mallocz(sizeof(AVFilterInOut));
245 currlinkn->type = LinkTypeOut;
246 currlinkn->filter = filter;
247 currlinkn->pad_idx = pad;
248 insert_inout(currInputs, currlinkn);
254 static int parse_inputs(const char **buf, AVFilterInOut **currInputs,
255 AVFilterInOut **openLinks, AVClass *log_ctx)
259 while(**buf == '[') {
260 char *name = parse_link_name(buf, log_ctx);
261 AVFilterInOut *match;
266 /* First check if the label is not in the openLinks list */
267 match = extract_inout(name, openLinks);
270 /* A label of a open link. Make it one of the inputs of the next
272 if(match->type != LinkTypeOut) {
273 av_log(log_ctx, AV_LOG_ERROR,
274 "Label \"%s\" appears twice as input!\n", match->name);
278 /* Not in the list, so add it as an input */
279 match = av_mallocz(sizeof(AVFilterInOut));
281 match->type = LinkTypeIn;
282 match->pad_idx = pad;
285 insert_inout(currInputs, match);
287 *buf += consume_whitespace(*buf);
294 static int parse_outputs(const char **buf, AVFilterInOut **currInputs,
295 AVFilterInOut **openLinks, AVClass *log_ctx)
299 while(**buf == '[') {
300 char *name = parse_link_name(buf, log_ctx);
301 AVFilterInOut *match;
303 AVFilterInOut *input = *currInputs;
304 *currInputs = (*currInputs)->next;
309 /* First check if the label is not in the openLinks list */
310 match = extract_inout(name, openLinks);
313 /* A label of a open link. Link it. */
314 if(match->type != LinkTypeIn) {
315 av_log(log_ctx, AV_LOG_ERROR,
316 "Label \"%s\" appears twice as output!\n", match->name);
320 if(link_filter(input->filter, input->pad_idx,
321 match->filter, match->pad_idx, log_ctx) < 0)
326 /* Not in the list, so add the first input as a openLink */
327 input->next = *openLinks;
328 input->type = LinkTypeOut;
330 insert_inout(openOutputs, input);
332 *buf += consume_whitespace(*buf);
339 int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
340 AVFilterInOut *openLinks, AVClass *log_ctx)
346 AVFilterInOut *currInputs = NULL;
349 AVFilterContext *filter;
350 filters += consume_whitespace(filters);
352 pad = parse_inputs(&filters, &currInputs, &openLinks, log_ctx);
357 filter = parse_filter(&filters, graph, index, log_ctx);
362 if(filter->input_count == 1 && !currInputs && !index) {
363 // First input can be ommitted if it is "[in]"
364 const char *tmp = "[in]";
365 pad = parse_inputs(&tmp, &currInputs, &openLinks, log_ctx);
370 if(link_filter_inouts(filter, &currInputs, &openLinks, log_ctx) < 0)
373 pad = parse_outputs(&filters, &currInputs, &openLinks, log_ctx);
378 filters += consume_whitespace(filters);
381 if(chr == ';' && currInputs) {
382 av_log(log_ctx, AV_LOG_ERROR,
383 "Could not find a output to link when parsing \"%s\"\n",
388 } while(chr == ',' || chr == ';');
390 if(openLinks && !strcmp(openLinks->name, "out") && currInputs) {
391 // Last output can be ommitted if it is "[out]"
392 const char *tmp = "[out]";
393 if(parse_outputs(&tmp, &currInputs, &openLinks, log_ctx) < 0)
400 avfilter_destroy_graph(graph);
401 free_inout(openLinks);
402 free_inout(currInputs);