diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-01-21 13:01:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-02-27 14:47:25 +0100 |
| commit | 975909a62d4cb37c73492abfdd610fa7d1b06935 (patch) | |
| tree | b792e31cc9e718effa0ba39ba28ca942838aeb5a | |
| parent | f40fa28e3ee886c160d4ced26e4e9322d7ece5f0 (diff) | |
Make subtitle analysis depend on DCP standard.
| -rw-r--r-- | src/lib/film.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 8e409fc69..69d55c7c4 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -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(); |
