From: Carl Hetherington Date: Thu, 12 Jun 2014 09:45:38 +0000 (+0100) Subject: Incorporate Film::_with_subtitles in the Film::video_identifier X-Git-Tag: v2.0.48~551^2~102 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=4be68e872210db9536ce1997d7fcba1e285765b8;p=dcpomatic.git Incorporate Film::_with_subtitles in the Film::video_identifier Reported-by: Matthias Damm --- diff --git a/ChangeLog b/ChangeLog index 26bd287dc..55f1dea8b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-06-12 Carl Hetherington + + * Fix bug where DCP-o-matic does not recreate video after + subtitles are turned on or off. + 2014-06-10 Carl Hetherington * 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 (); }