diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-02-17 21:46:41 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-03-09 17:04:02 +0100 |
| commit | df32940ed20af828db106d57120e4bbde0855bac (patch) | |
| tree | 146279c7b63e636d4163312a72210920ff3d790d | |
| parent | dfee9091a7c5cae17dc4631b973122f8aaae19ab (diff) | |
Use some decimal places when reporting transcode speed in the log.
| -rw-r--r-- | src/lib/transcode_job.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/transcode_job.cc b/src/lib/transcode_job.cc index 6e1985400..481a4d2f2 100644 --- a/src/lib/transcode_job.cc +++ b/src/lib/transcode_job.cc @@ -134,7 +134,7 @@ TranscodeJob::run () fps = _encoder->frames_done() / (finish.tv_sec - start.tv_sec); } - LOG_GENERAL (N_("Transcode job completed successfully: %1 fps"), fps); + LOG_GENERAL (N_("Transcode job completed successfully: %1 fps"), dcp::locale_convert<string>(fps, 2, true)); if (dynamic_pointer_cast<DCPEncoder>(_encoder)) { try { |
