Skip to content

Commit

Permalink
fix print
Browse files Browse the repository at this point in the history
  • Loading branch information
f0e committed May 1, 2023
1 parent db5b945 commit ba9d1ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/rendering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ void c_render::render() {
if (blur.verbose) {
printf("Render settings:\n");
printf("Source video at %.2f timescale\n", settings.input_timescale);
if (settings.interpolate) printf("Interpolated to %sfps with %.2f timescale\n", settings.interpolated_fps, settings.output_timescale);
if (settings.interpolate) printf("Interpolated to %sfps with %.2f timescale\n", settings.interpolated_fps.c_str(), settings.output_timescale);
if (settings.blur) printf("Motion blurred to %dfps (%d%%)\n", settings.blur_output_fps, static_cast<int>(settings.blur_amount * 100));
printf("Rendered at %.2f speed with crf %d\n", settings.output_timescale, settings.quality);
}
Expand Down

0 comments on commit ba9d1ce

Please sign in to comment.