diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-03-13 08:26:39 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-04-09 19:12:38 +0200 |
commit | c43a7ecad997fc527af34b952334f3d030709a1b (patch) | |
tree | f8153b7bda13480fac1c3b8f866768b39bbafb63 /libavfilter/avfilter.h | |
parent | 7b3eb745b98b04dd8a4970b9fd6c98998e858fc1 (diff) | |
download | ffmpeg-c43a7ecad997fc527af34b952334f3d030709a1b.tar.gz |
lavfi: remove now unused args parameter from AVFilter.init
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 |