diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-22 09:56:09 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-22 09:56:09 +0000 |
commit | 98137a1a5b1a4438ab4d84e63a957dc83c7dacaf (patch) | |
tree | 3a11316225955972919037edc9fd4037d4fd5d00 | |
parent | d2874a9d594297c0e5a1152ea9e2b419c6f040f5 (diff) | |
download | ffmpeg-98137a1a5b1a4438ab4d84e63a957dc83c7dacaf.tar.gz |
Document create_filter().
Originally committed as revision 24423 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/graphparser.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index fbd10acc57..5b3f89ef53 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -80,6 +80,17 @@ static char *parse_link_name(const char **buf, AVClass *log_ctx) 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) |