diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-07-21 15:16:18 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-07-21 15:16:18 +0100 |
| commit | cbd4450197a083bf58bda510e626f73ba583cb66 (patch) | |
| tree | 2be308772512539570beab36beab02bde72d6d4b /src/lib/content.h | |
| parent | 1013175d5f6adfa0e6a7442e4c9aebb893787748 (diff) | |
Basics of multiple captions per content so that DCPContent can
hold subs and closed captions.
Diffstat (limited to 'src/lib/content.h')
| -rw-r--r-- | src/lib/content.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/content.h b/src/lib/content.h index 1e594e136..2a249011a 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -181,7 +181,10 @@ public: boost::shared_ptr<VideoContent> video; boost::shared_ptr<AudioContent> audio; - boost::shared_ptr<CaptionContent> caption; + std::list<boost::shared_ptr<CaptionContent> > caption; + + boost::shared_ptr<CaptionContent> only_caption () const; + boost::shared_ptr<CaptionContent> caption_of_original_type (CaptionType type) const; void signal_changed (int); |
