summaryrefslogtreecommitdiff
path: root/libavfilter/vf_blackdetect.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-11 14:48:19 +0200
committerClément Bœsch <ubitux@gmail.com>2013-04-11 14:48:19 +0200
commitab4afcb85b3ac23da3bce7fd9bc70d11b8bb28a4 (patch)
tree9219d482f09609c31128e3b0da41a3c6e6f6a277 /libavfilter/vf_blackdetect.c
parent7eb1ea2ae672da791d637be0e3aad44db7df16d3 (diff)
lavfi/blackdetect: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vf_blackdetect.c')
-rw-r--r--libavfilter/vf_blackdetect.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/libavfilter/vf_blackdetect.c b/libavfilter/vf_blackdetect.c
index e8af624c4c..9c9e6b4993 100644
--- a/libavfilter/vf_blackdetect.c
+++ b/libavfilter/vf_blackdetect.c
@@ -82,20 +82,6 @@ static int query_formats(AVFilterContext *ctx)
return 0;
}
-static av_cold int init(AVFilterContext *ctx, const char *args)
-{
- int ret;
- BlackDetectContext *blackdetect = ctx->priv;
-
- blackdetect->class = &blackdetect_class;
- av_opt_set_defaults(blackdetect);
-
- if ((ret = av_set_options_string(blackdetect, args, "=", ":")) < 0)
- return ret;
-
- return 0;
-}
-
static int config_input(AVFilterLink *inlink)
{
AVFilterContext *ctx = inlink->dst;
@@ -211,7 +197,6 @@ AVFilter avfilter_vf_blackdetect = {
.name = "blackdetect",
.description = NULL_IF_CONFIG_SMALL("Detect video intervals that are (almost) black."),
.priv_size = sizeof(BlackDetectContext),
- .init = init,
.query_formats = query_formats,
.inputs = blackdetect_inputs,
.outputs = blackdetect_outputs,