diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 11:59:06 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 12:41:13 +0200 |
commit | fcaea2170f0771911620dfb11b64ae0d1970c71f (patch) | |
tree | 10d1fb310e5c0cfa5eb29bc2d02a946a5aec6dc6 | |
parent | 3417280b579eeaee1ad2e3cf1f430cf162d9252a (diff) | |
download | ffmpeg-fcaea2170f0771911620dfb11b64ae0d1970c71f.tar.gz |
lavfi/overlay: cleanup unused shorthand.
-rw-r--r-- | libavfilter/vf_overlay.c | 3 |
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, }; |