diff options
Diffstat (limited to 'src/lib/player_subtitles.h')
| -rw-r--r-- | src/lib/player_subtitles.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/lib/player_subtitles.h b/src/lib/player_subtitles.h index a202cf4f8..9ec7b1056 100644 --- a/src/lib/player_subtitles.h +++ b/src/lib/player_subtitles.h @@ -27,18 +27,15 @@ class Font; +/** A set of subtitles which span the same time period */ class PlayerSubtitles { public: - PlayerSubtitles (DCPTime f) - : from (f) - {} - void add_fonts (std::list<boost::shared_ptr<Font> > fonts_); - - DCPTime from; std::list<boost::shared_ptr<Font> > fonts; + DCPTimePeriod period; + /** ImageSubtitles, with their rectangles transformed as specified by their content */ std::list<ImageSubtitle> image; std::list<SubtitleString> text; |
