Support SSA subtitles embedded within FFmpeg files.
[dcpomatic.git] / src / lib / ffmpeg_examiner.h
index e87e11d1c7db29249e360963057a44a90c1aa647..a2a80b254e7e78179fcb4a52d9b8765591fe1299 100644 (file)
@@ -88,12 +88,15 @@ private:
 
        struct SubtitleStart
        {
-               SubtitleStart (std::string id_, ContentTime time_)
+               SubtitleStart (std::string id_, bool image_, ContentTime time_)
                        : id (id_)
+                       , image (image_)
                        , time (time_)
                {}
 
                std::string id;
+               /** true if it's an image subtitle, false for text */
+               bool image;
                ContentTime time;
        };