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:59:06 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-11 14:41:13 +0400
commitfcaea2170f0771911620dfb11b64ae0d1970c71f (patch)
tree10d1fb310e5c0cfa5eb29bc2d02a946a5aec6dc6 /libavfilter/vf_overlay.c
parent3417280b579eeaee1ad2e3cf1f430cf162d9252a (diff)
lavfi/overlay: cleanup unused shorthand.
Diffstat (limited to 'libavfilter/vf_overlay.c')
-rw-r--r--libavfilter/vf_overlay.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_overlay.c b/libavfilter/vf_overlay.c
index e9efcfc9e1..585ad3bc4a 100644
--- a/libavfilter/vf_overlay.c
+++ b/libavfilter/vf_overlay.c
@@ -750,8 +750,6 @@ static const AVFilterPad avfilter_vf_overlay_outputs[] = {
{ NULL }
};
-static const char *const shorthand[] = { "x", "y", NULL };
-
AVFilter avfilter_vf_overlay = {
.name = "overlay",
.description = NULL_IF_CONFIG_SMALL("Overlay a video source on top of the input."),
@@ -767,5 +765,4 @@ AVFilter avfilter_vf_overlay = {
.inputs = avfilter_vf_overlay_inputs,
.outputs = avfilter_vf_overlay_outputs,
- .shorthand = shorthand,
};