summaryrefslogtreecommitdiff
path: root/libavfilter/vf_geq.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-10 22:33:41 +0200
committerClément Bœsch <ubitux@gmail.com>2013-04-10 23:16:03 +0200
commitf8eabab04d1b429bc0332c06a46ae3c344a4cb15 (patch)
treeb5647cf45d2fd2f5fffcbf7b9330df570771ed76 /libavfilter/vf_geq.c
parent1cdb9f48dbc3601fc9ba007d344a7cd45da094d4 (diff)
downloadffmpeg-f8eabab04d1b429bc0332c06a46ae3c344a4cb15.tar.gz
lavfi/geq: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vf_geq.c')
-rw-r--r--libavfilter/vf_geq.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_geq.c b/libavfilter/vf_geq.c
index a6b48e1665..64e8e5212f 100644
--- a/libavfilter/vf_geq.c
+++ b/libavfilter/vf_geq.c
@@ -228,8 +228,6 @@ static const AVFilterPad geq_outputs[] = {
{ NULL }
};
-static const char *const shorthand[] = { "lum_expr", "cb_expr", "cr_expr", "alpha_expr", NULL };
-
AVFilter avfilter_vf_geq = {
.name = "geq",
.description = NULL_IF_CONFIG_SMALL("Apply generic equation to each pixel."),
@@ -240,5 +238,4 @@ AVFilter avfilter_vf_geq = {
.inputs = geq_inputs,
.outputs = geq_outputs,
.priv_class = &geq_class,
- .shorthand = shorthand,
};