Updated sv_SE translation from Adam Klotblixt.
[dcpomatic.git] / src / lib / ffmpeg_examiner.h
index e87e11d1c7db29249e360963057a44a90c1aa647..f64ea8d799dd51af807eb6cfbb29aee374cb5d95 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -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;
        };