From: Carl Hetherington Date: Thu, 18 Jun 2015 15:33:03 +0000 (+0100) Subject: Incorporate fade in video content identifiers (#613). X-Git-Tag: v2.1.5~9 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=dd28fe883c8aa637b9a158751516f36b9eccf1e4 Incorporate fade in video content identifiers (#613). --- diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index a8355ffd6..60b702e01 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -332,7 +332,9 @@ VideoContent::identifier () const << "_" << crop().right << "_" << crop().top << "_" << crop().bottom - << "_" << scale().id(); + << "_" << scale().id() + << "_" << _fade_in + << "_" << _fade_out; if (colour_conversion()) { s << "_" << colour_conversion().get().identifier ();