summaryrefslogtreecommitdiff
path: root/libavfilter/vf_histeq.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-03-24 09:05:51 +0100
committerClément Bœsch <ubitux@gmail.com>2013-03-24 12:26:25 +0100
commit552c02f20f5ba1665279e6e631c6517b72c01891 (patch)
treecdc682c1a8413d8f1c578aba94c6243e3149ab46 /libavfilter/vf_histeq.c
parentb27a8ba13cf93cbb947149db692048367643f996 (diff)
lavfi/histeq: use standard options parsing.
Diffstat (limited to 'libavfilter/vf_histeq.c')
-rw-r--r--libavfilter/vf_histeq.c18
1 files changed, 3 insertions, 15 deletions
diff --git a/libavfilter/vf_histeq.c b/libavfilter/vf_histeq.c
index a9cb60e847..05e1d59a66 100644
--- a/libavfilter/vf_histeq.c
+++ b/libavfilter/vf_histeq.c
@@ -85,14 +85,6 @@ AVFILTER_DEFINE_CLASS(histeq);
static av_cold int init(AVFilterContext *ctx, const char *args)
{
HisteqContext *histeq = ctx->priv;
- const char *shorthand[] = { "strength", "intensity", "antibanding", NULL };
- int ret;
-
- histeq->class = &histeq_class;
- av_opt_set_defaults(histeq);
-
- if ((ret = av_opt_set_from_string(histeq, args, shorthand, "=", ":")) < 0)
- return ret;
av_log(ctx, AV_LOG_VERBOSE,
"strength:%0.3f intensity:%0.3f antibanding:%d\n",
@@ -101,12 +93,6 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
return 0;
}
-static av_cold void uninit(AVFilterContext *ctx)
-{
- HisteqContext *histeq = ctx->priv;
- av_opt_free(histeq);
-}
-
static int query_formats(AVFilterContext *ctx)
{
static const enum PixelFormat pix_fmts[] = {
@@ -283,15 +269,17 @@ static const AVFilterPad histeq_outputs[] = {
{ NULL }
};
+static const char *const shorthand[] = { "strength", "intensity", "antibanding", NULL };
+
AVFilter avfilter_vf_histeq = {
.name = "histeq",
.description = NULL_IF_CONFIG_SMALL("Apply global color histogram equalization."),
.priv_size = sizeof(HisteqContext),
.init = init,
- .uninit = uninit,
.query_formats = query_formats,
.inputs = histeq_inputs,
.outputs = histeq_outputs,
.priv_class = &histeq_class,
+ .shorthand = shorthand,
};