Prevent DCP creation if we're trying not to burn in text subs (#606).
[dcpomatic.git] / src / lib / dcp_subtitle_content.h
index 05af716906a31b05f96de284c4cbf1df5e62b9b7..9fea81c2a46737368ff16d7a1c21e4e1948716e2 100644 (file)
@@ -34,10 +34,15 @@ public:
        DCPTime full_length () const;
 
        /* SubtitleContent */
-       bool has_subtitles () const {
+
+       bool has_text_subtitles () const {
                return true;
        }
 
+       bool has_image_subtitles () const {
+               return false;
+       }
+
 private:
        DCPTime _length;
 };