Commit 86a47378 authored by Stefano Sabatini's avatar Stefano Sabatini

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
parent d7dbe558
...@@ -329,7 +329,7 @@ static int parse_outputs(const char **buf, AVFilterInOut **curr_inputs, ...@@ -329,7 +329,7 @@ static int parse_outputs(const char **buf, AVFilterInOut **curr_inputs,
return pad; 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_inputs,
AVFilterInOut *open_outputs, AVClass *log_ctx) AVFilterInOut *open_outputs, AVClass *log_ctx)
{ {
......
...@@ -45,7 +45,7 @@ typedef struct AVFilterInOut { ...@@ -45,7 +45,7 @@ typedef struct AVFilterInOut {
* @param outputs linked list to the outputs of the graph * @param outputs linked list to the outputs of the graph
* @return zero on success, -1 on error * @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, AVFilterInOut *inputs, AVFilterInOut *outputs,
AVClass *log_ctx); AVClass *log_ctx);
......
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