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

This commit is contained in:
Clément Bœsch
2013-04-11 00:52:39 +02:00
parent e4bd1db88e
commit a689a6b698
3 changed files with 2 additions and 5 deletions

View File

@@ -462,8 +462,6 @@ static const AVFilterPad noise_outputs[] = {
{ NULL }
};
static const char *const shorthand[] = { NULL };
AVFilter avfilter_vf_noise = {
.name = "noise",
.description = NULL_IF_CONFIG_SMALL("Add noise."),
@@ -474,5 +472,4 @@ AVFilter avfilter_vf_noise = {
.inputs = noise_inputs,
.outputs = noise_outputs,
.priv_class = &noise_class,
.shorthand = shorthand,
};