Commit b884c336 authored by vitor's avatar vitor

I should not have merged the graph parser with the graph

framework. Split it.

Commited in SoC by Vitor Sessak on 2008-04-03 16:29:07


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12746 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d7d1f40a
This diff is collapsed.
......@@ -30,16 +30,9 @@ typedef struct AVFilterGraph {
} AVFilterGraph;
/**
* Add to a graph a graph described by a string.
* @param graph the filter graph where to link the parsed graph context
* @param filters string to be parsed
* @param in input to the graph to be parsed (TODO: allow several)
* @param inpad pad index of the input
* @param in output to the graph to be parsed (TODO: allow several)
* @param inpad pad index of the output
* @return zero on success, -1 on error
* Get a pointer to a graph by instance name
*/
int avfilter_graph_parse_chain(AVFilterGraph *graph, const char *filters, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad);
AVFilterContext *avfilter_graph_get_filter(AVFilterGraph *graph, char *name);
/**
* Add an existing filter instance to a filter graph.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment