diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-12 11:13:33 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-12 11:54:39 +0200 |
commit | fd6228e65711e63a9e35e9a1087d7ce62040e6e3 (patch) | |
tree | a533de5b0c63597c733c7702f507e4df53f5e8e3 /libavfilter/af_biquads.c | |
parent | d69a4177b988cadaaadcd349f4b5dc1abe784a2d (diff) | |
download | ffmpeg-fd6228e65711e63a9e35e9a1087d7ce62040e6e3.tar.gz |
lavfi: remove now unused args parameter from AVFilter.init and init_opaque
This is mostly automated global search and replace
The deprecated aconvert filter is disabled, if it still has users
it should be updated
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/af_biquads.c')
-rw-r--r-- | libavfilter/af_biquads.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/af_biquads.c b/libavfilter/af_biquads.c index 6774f5ae82..0141ffdd27 100644 --- a/libavfilter/af_biquads.c +++ b/libavfilter/af_biquads.c @@ -116,7 +116,7 @@ typedef struct { double b0, double b1, double b2, double a1, double a2); } BiquadsContext; -static av_cold int init(AVFilterContext *ctx, const char *args) +static av_cold int init(AVFilterContext *ctx) { BiquadsContext *p = ctx->priv; @@ -446,12 +446,12 @@ static const AVFilterPad outputs[] = { #define DEFINE_BIQUAD_FILTER(name_, description_) \ AVFILTER_DEFINE_CLASS(name_); \ -static av_cold int name_##_init(AVFilterContext *ctx, const char *args) \ +static av_cold int name_##_init(AVFilterContext *ctx) \ { \ BiquadsContext *p = ctx->priv; \ p->class = &name_##_class; \ p->filter_type = name_; \ - return init(ctx, args); \ + return init(ctx); \ } \ \ AVFilter avfilter_af_##name_ = { \ |