mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
life: add seed information in filter summary.
This commit is contained in:
parent
6c44ff38d6
commit
c88d6b18ce
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user