Add language property to SubtitleContent and use it in output DCP subtitle files.
[dcpomatic.git] / src / lib / player_subtitles.h
index d0a3b4f657366b4e06af0a2c54e7441f471b8d91..804c87cb9e22b2fb62c062572d23599a0af8084b 100644 (file)
@@ -36,7 +36,9 @@ public:
 
        /** ImageSubtitles, with their rectangles transformed as specified by their content */
        std::list<ImageSubtitle> image;
-       std::list<dcp::SubtitleString> text; 
+       std::list<dcp::SubtitleString> text;
+
+       std::string language;
 };
 
 #endif