diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:09:27 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-04-04 20:09:27 +0000 |
commit | d2027baac5aaf078a4b7abf5d9d7b0dee4ea6b3b (patch) | |
tree | 96dd81eceefe38bbdbd26ca17654a41a7c744af9 /libavfilter/avfiltergraph.h | |
parent | 966b8f2dcb7ad85bed476edba2974050af2ac53b (diff) | |
download | ffmpeg-d2027baac5aaf078a4b7abf5d9d7b0dee4ea6b3b.tar.gz |
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
Originally committed as revision 12746 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfiltergraph.h')
-rw-r--r-- | libavfilter/avfiltergraph.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/libavfilter/avfiltergraph.h b/libavfilter/avfiltergraph.h index f856fbd6b6..58afa04cea 100644 --- a/libavfilter/avfiltergraph.h +++ b/libavfilter/avfiltergraph.h @@ -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. |