diff options
author | Clément Bœsch <u@pkh.me> | 2015-09-09 01:16:23 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-09-09 01:16:23 +0200 |
commit | 7114282a0d9368b06223597f5acf5b8926e6c9e5 (patch) | |
tree | 2060a67b1b04d0a71f33b3f87e403c699f7c3e25 /libavfilter/vsrc_life.c | |
parent | 7b6007204d9e7c3855d365099f9115f45580acd4 (diff) | |
download | ffmpeg-7114282a0d9368b06223597f5acf5b8926e6c9e5.tar.gz |
avfilter/life: use AV_OPT_TYPE_BOOL for a stitch option
Diffstat (limited to 'libavfilter/vsrc_life.c')
-rw-r--r-- | libavfilter/vsrc_life.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vsrc_life.c b/libavfilter/vsrc_life.c index 2c2baf274c..314746dc94 100644 --- a/libavfilter/vsrc_life.c +++ b/libavfilter/vsrc_life.c @@ -89,7 +89,7 @@ static const AVOption life_options[] = { { "ratio", "set fill ratio for filling initial grid randomly", OFFSET(random_fill_ratio), AV_OPT_TYPE_DOUBLE, {.dbl=1/M_PHI}, 0, 1, FLAGS }, { "random_seed", "set the seed for filling the initial grid randomly", OFFSET(random_seed), AV_OPT_TYPE_INT, {.i64=-1}, -1, UINT32_MAX, FLAGS }, { "seed", "set the seed for filling the initial grid randomly", OFFSET(random_seed), AV_OPT_TYPE_INT, {.i64=-1}, -1, UINT32_MAX, FLAGS }, - { "stitch", "stitch boundaries", OFFSET(stitch), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS }, + { "stitch", "stitch boundaries", OFFSET(stitch), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS }, { "mold", "set mold speed for dead cells", OFFSET(mold), AV_OPT_TYPE_INT, {.i64=0}, 0, 0xFF, FLAGS }, { "life_color", "set life color", OFFSET( life_color), AV_OPT_TYPE_COLOR, {.str="white"}, CHAR_MIN, CHAR_MAX, FLAGS }, { "death_color", "set death color", OFFSET(death_color), AV_OPT_TYPE_COLOR, {.str="black"}, CHAR_MIN, CHAR_MAX, FLAGS }, |