diff options
| author | cah <cth@carlh.net> | 2025-07-10 22:47:19 +0200 |
|---|---|---|
| committer | cah <cth@carlh.net> | 2025-07-10 22:47:19 +0200 |
| commit | 4be4e97abf911e7633172ada950d107a3ed28834 (patch) | |
| tree | c9deceb5f3684fa081db0613da88264732093fcb /src/lib/make_dcp.cc | |
| parent | 727c1aa7da8b325dfa38c8443b1dd356acaf6ec3 (diff) | |
| parent | 42bde2d97039f6d0d645d83db90612d18ebf225a (diff) | |
Merge branch 'compose-to-fmt-take2'
This removes all uses of String::compose, replacing them with fmt and
updating the i18n strings where required.
Diffstat (limited to 'src/lib/make_dcp.cc')
| -rw-r--r-- | src/lib/make_dcp.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/make_dcp.cc b/src/lib/make_dcp.cc index c40f707ee..dcbb81bce 100644 --- a/src/lib/make_dcp.cc +++ b/src/lib/make_dcp.cc @@ -84,10 +84,10 @@ make_dcp (shared_ptr<Film> film, TranscodeJob::ChangedBehaviour behaviour) } for (auto content: film->content()) { - LOG_GENERAL ("Content: %1", content->technical_summary()); + LOG_GENERAL ("Content: {}", content->technical_summary()); } - LOG_GENERAL ("DCP video rate %1 fps", film->video_frame_rate()); - LOG_GENERAL("Video bit rate %1", film->video_bit_rate(film->video_encoding())); + LOG_GENERAL ("DCP video rate {} fps", film->video_frame_rate()); + LOG_GENERAL("Video bit rate {}", film->video_bit_rate(film->video_encoding())); auto tj = make_shared<DCPTranscodeJob>(film, behaviour); tj->set_encoder(make_shared<DCPFilmEncoder>(film, tj)); |
