We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 201615f commit 78ec0b0Copy full SHA for 78ec0b0
tests/test_otiod.cpp
@@ -111,10 +111,10 @@ main(int argc, char** argv)
111
std::filesystem::path const temp_file = temp_dir / "test.otiod";
112
bundle::WriteOptions options;
113
options.parent_path = sample_data_dir.u8string();
114
- assertTrue(bundle::to_otiod(timeline, temp_file, options));
+ assertTrue(bundle::to_otiod(timeline, temp_file.u8string(), options));
115
116
// By default will provide relative paths.
117
- auto result = bundle::from_otiod(temp_file);
+ auto result = bundle::from_otiod(temp_file.u8string());
118
for (auto cl: result->find_clips())
119
{
120
if (auto er = dynamic_cast<otio::ExternalReference*>(
0 commit comments