From fcaea2170f0771911620dfb11b64ae0d1970c71f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Thu, 11 Apr 2013 11:59:06 +0200 Subject: [PATCH] lavfi/overlay: cleanup unused shorthand. --- libavfilter/vf_overlay.c | 3 --- 1 file changed, 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, };