From 75820120588b5da73addf03092194aed38e87e2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Thu, 8 Nov 2012 23:17:37 +0100 Subject: [PATCH] lavfi/tile: extend shorthand parameters. This makes the syntax similar to mp=tile. --- libavfilter/vf_tile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_tile.c b/libavfilter/vf_tile.c index 235ebd829c..4c619ffef2 100644 --- a/libavfilter/vf_tile.c +++ b/libavfilter/vf_tile.c @@ -64,7 +64,7 @@ AVFILTER_DEFINE_CLASS(tile); static av_cold int init(AVFilterContext *ctx, const char *args) { TileContext *tile = ctx->priv; - static const char *shorthand[] = { "layout", NULL }; + static const char *shorthand[] = { "layout", "nb_frames", "margin", "padding", NULL }; int ret; tile->class = &tile_class;