Fix write_frame_info again.
[dcpomatic.git] / src / lib / subrip_content.h
index e6352617972e31fcfd089911964446abcab60173..342efd4defc0ce25fdf6836592862b0ca1fa7cf2 100644 (file)
@@ -28,7 +28,7 @@ public:
        boost::shared_ptr<SubRipContent> shared_from_this () {
                return boost::dynamic_pointer_cast<SubRipContent> (Content::shared_from_this ());
        }
-       
+
        /* Content */
        void examine (boost::shared_ptr<Job>);
        std::string summary () const;
@@ -37,12 +37,17 @@ public:
        DCPTime full_length () const;
 
        /* SubtitleContent */
-       bool has_subtitles () const {
+
+       bool has_text_subtitles () const {
                return true;
        }
 
+       bool has_image_subtitles () const {
+               return false;
+       }
+
        static std::string const font_id;
-       
+
 private:
        DCPTime _length;
 };