diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/asset_factory.cc | 3 |
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()); } |
