From b03f2277a205ff7e7cdaa12c6e52322ea474a7af Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 30 Dec 2024 15:43:14 +0100 Subject: Bump libdcp for raw_convert changes. raw_convert is gone, so here we use fmt::{to_string,format} instead. Other raw_converts now use fast_float. --- src/lib/hints.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/hints.cc') diff --git a/src/lib/hints.cc b/src/lib/hints.cc index 4a13f77a0..b929a3746 100644 --- a/src/lib/hints.cc +++ b/src/lib/hints.cc @@ -40,9 +40,9 @@ #include "writer.h" #include #include -#include #include #include +#include #include #include @@ -346,7 +346,7 @@ Hints::check_loudness () float const peak = max (sample_peak[i].peak, true_peak.empty() ? 0 : true_peak[i]); float const peak_dB = linear_to_db(peak) + an->gain_correction(film()->playlist()); if (peak_dB > -3) { - ch += dcp::raw_convert(short_audio_channel_name(i)) + ", "; + ch += fmt::to_string(short_audio_channel_name(i)) + ", "; } } -- cgit v1.2.3