[FFmpeg-cvslog] r17624 - in trunk/libavfilter: graphparser.c graphparser.h
stefano
subversion
Thu Feb 26 23:03:56 CET 2009
Author: stefano
Date: Thu Feb 26 23:03:55 2009
New Revision: 17624
Log:
Rename avfilter_parse_graph() to avfilter_graph_parse(), for better
consistency with the rest of the API.
Modified:
trunk/libavfilter/graphparser.c
trunk/libavfilter/graphparser.h
Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c Thu Feb 26 23:02:09 2009 (r17623)
+++ trunk/libavfilter/graphparser.c Thu Feb 26 23:03:55 2009 (r17624)
@@ -329,7 +329,7 @@ static int parse_outputs(const char **bu
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)
{
Modified: trunk/libavfilter/graphparser.h
==============================================================================
--- trunk/libavfilter/graphparser.h Thu Feb 26 23:02:09 2009 (r17623)
+++ trunk/libavfilter/graphparser.h Thu Feb 26 23:03:55 2009 (r17624)
@@ -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);
More information about the ffmpeg-cvslog
mailing list