summaryrefslogtreecommitdiff
path: root/src/asset_factory.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-12-24 11:29:47 +0100
committerCarl Hetherington <cth@carlh.net>2024-12-24 11:29:47 +0100
commitbf74ec274bc0bb30a05888d86b685f5199487004 (patch)
treef93f741c133ac7a9ffbd09d6f1d928196d0256fe /src/asset_factory.cc
parent2fa6a712ba7e07eefab5df62a9c00214cd3c4f14 (diff)
debugdbg
Diffstat (limited to 'src/asset_factory.cc')
-rw-r--r--src/asset_factory.cc3
1 files changed, 2 insertions, 1 deletions
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());
}