summaryrefslogtreecommitdiff
path: root/src/reel_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-03-24 00:41:32 +0100
committerCarl Hetherington <cth@carlh.net>2022-03-24 00:41:32 +0100
commitbc6ef3ae7644c256e2339366e5aa14c4fa4bbee4 (patch)
tree2bf418ab859d9c11b433f55549c26cbae3b3631e /src/reel_asset.h
parent066e30f30f851396bd6f10d50a448507e1c0b392 (diff)
Remove <EntryPoint> and <Duration> from <ReelMarkerAsset> tags.
They should not be there: "EntryPoint" ... "This element shall only be present when the Asset refers to an external resource such as a Track File". Fixes DoM bug #2215.
Diffstat (limited to 'src/reel_asset.h')
-rw-r--r--src/reel_asset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reel_asset.h b/src/reel_asset.h
index 200c49ff..6de7f1be 100644
--- a/src/reel_asset.h
+++ b/src/reel_asset.h
@@ -79,7 +79,7 @@ public:
* @param intrinsic_duration Intrinsic duration of this asset
* @param entry_point Entry point to use in that asset
*/
- ReelAsset (std::string id, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point);
+ ReelAsset (std::string id, Fraction edit_rate, int64_t intrinsic_duration, boost::optional<int64_t> entry_point);
explicit ReelAsset (std::shared_ptr<const cxml::Node>);