diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-21 02:02:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-21 02:02:42 +0100 |
| commit | 7fff85ef947f9353317c0125dc37f1f16faecbf1 (patch) | |
| tree | cb843452d7f1f442530f72ae92967bf1f25d3ccc /src/lib/subtitle_content.h | |
| parent | 08ea137fc8a74f622821dc4e6953f635837118c8 (diff) | |
Prevent DCP creation if we're trying not to burn in text subs (#606).
Diffstat (limited to 'src/lib/subtitle_content.h')
| -rw-r--r-- | src/lib/subtitle_content.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/subtitle_content.h b/src/lib/subtitle_content.h index c00ec6f90..7f2e3b136 100644 --- a/src/lib/subtitle_content.h +++ b/src/lib/subtitle_content.h @@ -53,7 +53,9 @@ public: void as_xml (xmlpp::Node *) const; std::string identifier () const; - virtual bool has_subtitles () const = 0; + bool has_subtitles () const; + virtual bool has_text_subtitles () const = 0; + virtual bool has_image_subtitles () const = 0; void add_font (boost::shared_ptr<Font> font); |
