[FFmpeg-cvslog] r24423 - trunk/libavfilter/graphparser.c
stefano
subversion
Thu Jul 22 11:56:10 CEST 2010
Author: stefano
Date: Thu Jul 22 11:56:09 2010
New Revision: 24423
Log:
Document create_filter().
Modified:
trunk/libavfilter/graphparser.c
Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c Thu Jul 22 11:56:06 2010 (r24422)
+++ trunk/libavfilter/graphparser.c Thu Jul 22 11:56:09 2010 (r24423)
@@ -80,6 +80,17 @@ static char *parse_link_name(const char
return name;
}
+/**
+ * Create an instance of a filter, initialize and insert it in the
+ * filtergraph in *ctx.
+ *
+ * @param ctx the filtergraph context
+ * @param index an index which is supposed to be unique for each filter instance added to the filtergraph
+ * @param filt_name the name of the filter to create
+ * @param args the arguments provided to the filter during its initialization
+ * @param log_ctx the log context to use
+ * @return a filter context in case of successful creation and configuration, NULL otherwise.
+ */
static AVFilterContext *create_filter(AVFilterGraph *ctx, int index,
const char *filt_name, const char *args,
AVClass *log_ctx)
More information about the ffmpeg-cvslog
mailing list