diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-09-20 23:55:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-09-20 23:55:21 +0100 |
| commit | d6fda12c0bc46e3feb66709ffa71e67fb61a8c3f (patch) | |
| tree | 4b26f25d35aaa7bb43f3a132acba633810b7feef /src | |
| parent | b105b7dc5168d752cdbe5703d4160e7bcc43e7d6 (diff) | |
Add some setters.
Diffstat (limited to 'src')
| -rw-r--r-- | src/reel_asset.h | 8 |
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; } |
