You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-10-06 05:47:18 +02:00
life: add seed information in filter summary.
This commit is contained in:
@@ -261,9 +261,10 @@ static int init(AVFilterContext *ctx, const char *args, void *opaque)
|
|||||||
}
|
}
|
||||||
|
|
||||||
av_log(ctx, AV_LOG_INFO,
|
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->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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user