Tweak logging format.
[dcpomatic.git] / src / lib / dcp_subtitle_content.h
index 05af716906a31b05f96de284c4cbf1df5e62b9b7..8873283931114383a74a1d0411eafc2a78300dc3 100644 (file)
@@ -34,10 +34,20 @@ public:
        DCPTime full_length () const;
 
        /* SubtitleContent */
-       bool has_subtitles () const {
+
+       bool has_text_subtitles () const {
                return true;
        }
 
+       bool has_image_subtitles () const {
+               return false;
+       }
+
+       double subtitle_video_frame_rate () const;
+       void set_subtitle_video_frame_rate (int r);
+
 private:
-       DCPTime _length;
+       ContentTime _length;
+       /** Video frame rate that this content has been prepared for, if known */
+       boost::optional<double> _frame_rate;
 };