Browse code

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

Stefano Sabatini authored on 2009/02/27 07:03:55
Showing 2 changed files
... ...
@@ -329,7 +329,7 @@ static int parse_outputs(const char **buf, AVFilterInOut **curr_inputs,
329 329
     return pad;
330 330
 }
331 331
 
332
-int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
332
+int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
333 333
                          AVFilterInOut *open_inputs,
334 334
                          AVFilterInOut *open_outputs, AVClass *log_ctx)
335 335
 {
... ...
@@ -45,7 +45,7 @@ typedef struct AVFilterInOut {
45 45
  * @param outputs linked list to the outputs of the graph
46 46
  * @return        zero on success, -1 on error
47 47
  */
48
-int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
48
+int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
49 49
                          AVFilterInOut *inputs, AVFilterInOut *outputs,
50 50
                          AVClass *log_ctx);
51 51