Make subtitle analysis depend on DCP standard.
authorCarl Hetherington <cth@carlh.net>
Sat, 21 Jan 2023 12:01:23 +0000 (13:01 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 27 Feb 2023 13:47:25 +0000 (14:47 +0100)
src/lib/film.cc

index 8e409fc696fd114fe569bb1a25f07fee286571f0..69d55c7c43853ad1d7371645b6213043eb929ec9 100644 (file)
@@ -353,6 +353,7 @@ Film::subtitle_analysis_path (shared_ptr<const Content> content) const
 
        Digester digester;
        digester.add (content->digest());
+       digester.add(_interop ? "1" : "0");
 
        if (!content->text.empty()) {
                auto tc = content->text.front();