diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-01-03 18:13:25 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-01-08 05:06:12 +0100 |
commit | 6fed8a6cb0bd3c0afaaa8b77935fcd162ec06e6d (patch) | |
tree | c37fe0a788792f2bae21ac317020df55bd91ed4f /libavfilter | |
parent | 2d48b69b3d50aa508d41ef7e11b2f6f89571ba50 (diff) | |
download | ffmpeg-6fed8a6cb0bd3c0afaaa8b77935fcd162ec06e6d.tar.gz |
avfilter/af_biquads: Don't redundantly set AVClass
It is already set generically in ff_filter_alloc().
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_biquads.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/af_biquads.c b/libavfilter/af_biquads.c index 4774dfc5b6..4a09f8204a 100644 --- a/libavfilter/af_biquads.c +++ b/libavfilter/af_biquads.c @@ -873,7 +873,6 @@ AVFILTER_DEFINE_CLASS(name_); \ static av_cold int name_##_init(AVFilterContext *ctx) \ { \ BiquadsContext *s = ctx->priv; \ - s->class = &name_##_class; \ s->filter_type = name_; \ return 0; \ } \ |