diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-27 21:18:51 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-27 21:18:51 +0200 |
| commit | c78e9f0d5e802e1bb020694870357ef271217628 (patch) | |
| tree | e7fdc2f153206b24495f96f9a20814afe55c5bc6 /src/lib/dcp_content.h | |
| parent | be48763fb25bf516bd394827979342a30f2a594c (diff) | |
Fixes for new libdcp with multiple content versions.
Diffstat (limited to 'src/lib/dcp_content.h')
| -rw-r--r-- | src/lib/dcp_content.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h index 6d707670f..e8532ff57 100644 --- a/src/lib/dcp_content.h +++ b/src/lib/dcp_content.h @@ -162,8 +162,8 @@ public: return _ratings; } - std::string content_version () const { - return _content_version; + std::vector<std::string> content_versions () const { + return _content_versions; } private: @@ -214,7 +214,7 @@ private: std::list<int64_t> _reel_lengths; std::map<dcp::Marker, dcpomatic::ContentTime> _markers; std::vector<dcp::Rating> _ratings; - std::string _content_version; + std::vector<std::string> _content_versions; }; #endif |
