diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-09-27 00:52:20 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-09-27 13:46:16 +0200 |
| commit | 011291e265e266664e1446482b84451adca3102f (patch) | |
| tree | cdda5e115c4e8c7e225188001c816fb22fb61cd2 /src/lib/reel_writer.h | |
| parent | 111c05bebe5bc2b6f0031f66e429390ffe704556 (diff) | |
Use EnumIndexedVector in ReelWriter.
Diffstat (limited to 'src/lib/reel_writer.h')
| -rw-r--r-- | src/lib/reel_writer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/reel_writer.h b/src/lib/reel_writer.h index 6e92e8923..e2c713cc5 100644 --- a/src/lib/reel_writer.h +++ b/src/lib/reel_writer.h @@ -22,6 +22,7 @@ #include "atmos_metadata.h" #include "dcp_text_track.h" #include "dcpomatic_time.h" +#include "enum_indexed_vector.h" #include "font_id_map.h" #include "player_text.h" #include "referenced_reel_asset.h" @@ -125,7 +126,7 @@ private: /** the first picture frame index that does not already exist in our MXF */ int _first_nonexistent_frame; /** the data of the last written frame, if there is one */ - std::shared_ptr<const dcp::Data> _last_written[static_cast<int>(Eyes::COUNT)]; + EnumIndexedVector<std::shared_ptr<const dcp::Data>, Eyes> _last_written; /** index of this reel within the DCP (starting from 0) */ int _reel_index; /** number of reels in the DCP */ |
