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 13:39:24 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-11 13:51:48 +0400
commit9ceb7bdf6f88fb2ee7449401db2ebd4ee4c37597 (patch)
treeae83feb63163824770467bd1c1bd35cc681ca18b /libavfilter/vf_deshake.c
parentc85f56bb4fd8051a2e365ed71bdf3e4a3f0d9faa (diff)
lavfi/deshake: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vf_deshake.c')
-rw-r--r--libavfilter/vf_deshake.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavfilter/vf_deshake.c b/libavfilter/vf_deshake.c
index c8b8775371..f363c6eadf 100644
--- a/libavfilter/vf_deshake.c
+++ b/libavfilter/vf_deshake.c
@@ -560,12 +560,6 @@ static const AVFilterPad deshake_outputs[] = {
{ NULL }
};
-static const char *const shorthand[] = {
- "x", "y", "w", "h", "rx", "ry", "edge",
- "blocksize", "contrast", "search", "filename",
- NULL
-};
-
AVFilter avfilter_vf_deshake = {
.name = "deshake",
.description = NULL_IF_CONFIG_SMALL("Stabilize shaky video."),
@@ -576,5 +570,4 @@ AVFilter avfilter_vf_deshake = {
.inputs = deshake_inputs,
.outputs = deshake_outputs,
.priv_class = &deshake_class,
- .shorthand = shorthand,
};