From bf74ec274bc0bb30a05888d86b685f5199487004 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 24 Dec 2024 11:29:47 +0100 Subject: debug --- src/asset_factory.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/asset_factory.cc b/src/asset_factory.cc index 652e1e31..fa29b3de 100644 --- a/src/asset_factory.cc +++ b/src/asset_factory.cc @@ -63,7 +63,8 @@ dcp::asset_factory (boost::filesystem::path path, bool ignore_incorrect_picture_ ASDCP::EssenceType_t type; Kumu::FileReaderFactory factory; - auto const result = ASDCP::EssenceType(dcp::filesystem::fix_long_path(path).string().c_str(), type, factory); + std::cout << "path " << path << " converted " << dcp::filesystem::fix_long_path(path).string() << "\n"; + auto const result = ASDCP::EssenceType(dcp::filesystem::fix_long_path(path).string(), type, factory); if (!ASDCP_SUCCESS(result)) { throw ReadError(String::compose("Could not find essence type (%1)", result.Message()), path.string()); } -- cgit v1.2.3