1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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
This commit is contained in:
Stefano Sabatini 2009-02-26 22:03:55 +00:00
parent d7dbe55823
commit 86a47378d5
2 changed files with 2 additions and 2 deletions

View File

@ -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)
{ {

View File

@ -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);