diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | src/lib/film.cc | 4 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2014-06-12 Carl Hetherington <cth@carlh.net> + + * Fix bug where DCP-o-matic does not recreate video after + subtitles are turned on or off. + 2014-06-10 Carl Hetherington <cth@carlh.net> * Support ISDCF naming convention version 9 (#257). diff --git a/src/lib/film.cc b/src/lib/film.cc index 5b709ab1c..609003bba 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -184,6 +184,10 @@ Film::video_identifier () const s << "_3D"; } + if (_with_subtitles) { + s << "_WS"; + } + return s.str (); } |
