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 | |
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
-rw-r--r-- | libavfilter/graphparser.c | 2 | ||||
-rw-r--r-- | libavfilter/graphparser.h | 2 |
2 files changed, 2 insertions, 2 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) { diff --git a/libavfilter/graphparser.h b/libavfilter/graphparser.h index 725b728b88..b3272e8a43 100644 --- a/libavfilter/graphparser.h +++ b/libavfilter/graphparser.h @@ -45,7 +45,7 @@ typedef struct AVFilterInOut { * @param outputs linked list to the outputs of the graph * @return zero on success, -1 on error */ -int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, +int avfilter_graph_parse(AVFilterGraph *graph, const char *filters, AVFilterInOut *inputs, AVFilterInOut *outputs, AVClass *log_ctx); |