diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-18 16:33:03 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-18 16:33:03 +0100 |
| commit | dd28fe883c8aa637b9a158751516f36b9eccf1e4 (patch) | |
| tree | 3bb9cf1918356c0d3d14b1bdf091c00cc4756dbc /src/lib | |
| parent | 873f040a011a8f8ffa6b65686925b2db4ab2aeb4 (diff) | |
Incorporate fade in video content identifiers (#613).
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/video_content.cc | 4 |
1 files changed, 3 insertions, 1 deletions
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 (); |
