Message ID | 20210104002816.2321974-15-andreas.rheinhardt@gmail.com |
---|---|
State | Accepted |
Commit | 6fed8a6cb0bd3c0afaaa8b77935fcd162ec06e6d |
Headers | show |
Series | [FFmpeg-devel,01/16] avcodec/g723_1: Deduplicate arrays |
Related | show |
Context | Check | Description |
---|---|---|
andriy/x86_make | success | Make finished |
andriy/x86_make_fate | success | Make fate finished |
andriy/PPC64_make | success | Make finished |
andriy/PPC64_make_fate | success | Make fate finished |
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; \ } \
It is already set generically in ff_filter_alloc(). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> --- libavfilter/af_biquads.c | 1 - 1 file changed, 1 deletion(-)