Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-11 02:52:39 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-11 03:04:45 +0400
commita689a6b698b9c6c97fb64208dc1a71b1f384eb9c (patch)
tree6617ac456c49733e59dd98d4fc2ca8b14c38f1af /libavfilter/vf_noise.c
parente4bd1db88ec05ad389dd4443461ef50a6007b808 (diff)
lavfi/noise: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vf_noise.c')
-rw-r--r--libavfilter/vf_noise.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_noise.c b/libavfilter/vf_noise.c
index 84205cbe1a..52e3963464 100644
--- a/libavfilter/vf_noise.c
+++ b/libavfilter/vf_noise.c
@@ -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,
};