Commit c88d6b18 authored by Clément Bœsch's avatar Clément Bœsch

life: add seed information in filter summary.

parent 6c44ff38
......@@ -261,9 +261,10 @@ static int init(AVFilterContext *ctx, const char *args, void *opaque)
}
av_log(ctx, AV_LOG_INFO,
"s:%dx%d r:%d/%d rule:%s stay_rule:%d born_rule:%d stitch:%d\n",
"s:%dx%d r:%d/%d rule:%s stay_rule:%d born_rule:%d stitch:%d seed:%u\n",
life->w, life->h, frame_rate.num, frame_rate.den,
life->rule_str, life->stay_rule, life->born_rule, life->stitch);
life->rule_str, life->stay_rule, life->born_rule, life->stitch,
life->random_seed);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment