lavfi/histeq: switch to an AVOptions-based system.

This commit is contained in:
Clément Bœsch
2013-04-11 00:40:33 +02:00
parent c2696dabbb
commit e4bd1db88e
3 changed files with 2 additions and 9 deletions

View File

@@ -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,
};