1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

lavfi/overlay: cleanup unused shorthand.

This commit is contained in:
Clément Bœsch
2013-04-11 11:59:06 +02:00
parent 3417280b57
commit fcaea2170f

View File

@@ -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,
};