From c43a7ecad997fc527af34b952334f3d030709a1b Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 13 Mar 2013 08:26:39 +0100 Subject: lavfi: remove now unused args parameter from AVFilter.init --- libavfilter/avfilter.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavfilter/avfilter.h') diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 5208c2a2a3..28d3684b14 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -403,10 +403,10 @@ typedef struct AVFilter { */ /** - * Filter initialization function. Args contains the user-supplied - * parameters. FIXME: maybe an AVOption-based system would be better? + * Filter initialization function. Called when all the options have been + * set. */ - int (*init)(AVFilterContext *ctx, const char *args); + int (*init)(AVFilterContext *ctx); /** * Should be set instead of init by the filters that want to pass a -- cgit v1.2.3