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

lavfi/tile: extend shorthand parameters.

This makes the syntax similar to mp=tile.
This commit is contained in:
Clément Bœsch
2012-11-08 23:17:37 +01:00
parent 4a90e7124d
commit 7582012058

View File

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