diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-11-08 23:17:37 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-11-11 22:43:18 +0100 |
commit | 75820120588b5da73addf03092194aed38e87e2e (patch) | |
tree | 485a24cc6b7f8d66e893592ac4b988191200ab2f /libavfilter/vf_tile.c | |
parent | 4a90e7124de0662d544b8dfdf67ab23f595050d4 (diff) | |
download | ffmpeg-75820120588b5da73addf03092194aed38e87e2e.tar.gz |
lavfi/tile: extend shorthand parameters.
This makes the syntax similar to mp=tile.
Diffstat (limited to 'libavfilter/vf_tile.c')
-rw-r--r-- | libavfilter/vf_tile.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |