summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/reel_asset.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/reel_asset.h b/src/reel_asset.h
index 1e826a33..06db76d5 100644
--- a/src/reel_asset.h
+++ b/src/reel_asset.h
@@ -90,10 +90,18 @@ public:
return _intrinsic_duration;
}
+ void set_entry_point (int64_t e) {
+ _entry_point = e;
+ }
+
int64_t entry_point () const {
return _entry_point;
}
+ void set_duration (int64_t d) {
+ _duration = d;
+ }
+
int64_t duration () const {
return _duration;
}