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/atmos_content.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/atmos_content.cc') diff --git a/src/lib/atmos_content.cc b/src/lib/atmos_content.cc index 22bd431a2..c83b259cc 100644 --- a/src/lib/atmos_content.cc +++ b/src/lib/atmos_content.cc @@ -20,11 +20,11 @@ #include "atmos_content.h" -#include #include LIBDCP_DISABLE_WARNINGS #include LIBDCP_ENABLE_WARNINGS +#include using std::make_shared; @@ -65,7 +65,7 @@ AtmosContent::from_xml (Content* parent, cxml::ConstNodePtr node) void AtmosContent::as_xml(xmlpp::Element* element) const { - cxml::add_text_child(element, "AtmosLength", dcp::raw_convert(_length)); + cxml::add_text_child(element, "AtmosLength", fmt::to_string(_length)); cxml::add_text_child(element, "AtmosEditRate", _edit_rate.as_string()); } -- cgit v1.2.3