summaryrefslogtreecommitdiff
path: root/libavfilter/vf_histeq.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-11 00:40:33 +0200
committerClément Bœsch <ubitux@gmail.com>2013-04-11 01:04:44 +0200
commite4bd1db88ec05ad389dd4443461ef50a6007b808 (patch)
tree53158e85dc78ed768676d12a112db9ce63e3b5ef /libavfilter/vf_histeq.c
parentc2696dabbbc6674e31b16d4e06b81e647e907d11 (diff)
lavfi/histeq: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vf_histeq.c')
-rw-r--r--libavfilter/vf_histeq.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_histeq.c b/libavfilter/vf_histeq.c
index 05e1d59a66..f4d7795cbd 100644
--- a/libavfilter/vf_histeq.c
+++ b/libavfilter/vf_histeq.c
@@ -269,8 +269,6 @@ 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."),
@@ -281,5 +279,4 @@ AVFilter avfilter_vf_histeq = {
.inputs = histeq_inputs,
.outputs = histeq_outputs,
.priv_class = &histeq_class,
- .shorthand = shorthand,
};