summaryrefslogtreecommitdiff
path: root/libavfilter/af_biquads.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/af_biquads.c')
-rw-r--r--libavfilter/af_biquads.c7
1 files changed, 0 insertions, 7 deletions
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[] = {