From e6067acc8da45e00b662a21b1cf147f297a49d52 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 11 Apr 2013 00:30:28 +0000 Subject: lavfi/biquads: switch to an AVOptions-based system Signed-off-by: Paul B Mahol --- libavfilter/af_biquads.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'libavfilter/af_biquads.c') diff --git a/libavfilter/af_biquads.c b/libavfilter/af_biquads.c index 2db0e02f35..6774f5ae82 100644 --- a/libavfilter/af_biquads.c +++ b/libavfilter/af_biquads.c @@ -119,12 +119,6 @@ typedef struct { static av_cold int init(AVFilterContext *ctx, const char *args) { BiquadsContext *p = ctx->priv; - int ret; - - av_opt_set_defaults(p); - - if ((ret = av_set_options_string(p, args, "=", ":")) < 0) - return ret; if (p->filter_type != biquad) { if (p->frequency <= 0 || p->width <= 0) { @@ -427,7 +421,6 @@ static av_cold void uninit(AVFilterContext *ctx) BiquadsContext *p = ctx->priv; av_freep(&p->cache); - av_opt_free(p); } static const AVFilterPad inputs[] = { -- cgit v1.2.3