summaryrefslogtreecommitdiff
path: root/src/verify_internal.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-03-26 12:00:54 +0100
committerCarl Hetherington <cth@carlh.net>2026-03-26 12:00:54 +0100
commit01bf601526da5d6eec21e8a54dbd82f646bfedb9 (patch)
treec806a95d2aa2eaaed4e01b46b6d70e993d976eac /src/verify_internal.h
parentb7ae863ff2985b3a086bd54946428c9055da0d32 (diff)
Add asset ID to lots of notes.
Diffstat (limited to 'src/verify_internal.h')
-rw-r--r--src/verify_internal.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/verify_internal.h b/src/verify_internal.h
index 34d34751..3399dec1 100644
--- a/src/verify_internal.h
+++ b/src/verify_internal.h
@@ -101,6 +101,9 @@ public:
if (reel_index) {
note.set_reel_index(*reel_index);
}
+ if (asset_id) {
+ note.set_asset_id(*asset_id);
+ }
notes.push_back(std::move(note));
}
@@ -128,6 +131,7 @@ public:
std::shared_ptr<const DCP> dcp;
std::shared_ptr<const CPL> cpl;
boost::optional<int> reel_index;
+ boost::optional<std::string> asset_id;
boost::filesystem::path xsd_dtd_directory;
std::function<void (std::string, boost::optional<boost::filesystem::path>)> stage;
std::function<void (float)> progress;