diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-26 22:03:55 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-26 22:03:55 +0000 |
commit | 86a47378d568e476a6920bf19ca10464fb14edee (patch) | |
tree | a18566b61679899191d8aa92b4704ed32eee2543 /libavfilter/graphparser.c | |
parent | d7dbe55823d7b4741889463c0e73703a172bbffb (diff) | |
download | ffmpeg-86a47378d568e476a6920bf19ca10464fb14edee.tar.gz |
Rename avfilter_parse_graph() to avfilter_graph_parse(), for better
consistency with the rest of the API.
Originally committed as revision 17624 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/graphparser.c')
-rw-r--r-- | libavfilter/graphparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index d1cc16759f..69a80acb89 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -329,7 +329,7 @@ static int parse_outputs(const char **buf, AVFilterInOut **curr_inputs, return pad; } -int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, +int avfilter_graph_parse(AVFilterGraph *graph, const char *filters, AVFilterInOut *open_inputs, AVFilterInOut *open_outputs, AVClass *log_ctx) { |