diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-08-18 22:11:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-08-18 22:11:59 +0100 |
| commit | b89cc774a89867caa97db4b082655569c7d69432 (patch) | |
| tree | 7a2381e431ac37c1e23752ad5970ded4dd99f56a /src/lib/video_content.cc | |
| parent | e4b30a67b690755a3cd44678bd0671f06af8a36e (diff) | |
Add colour conversion identifier to video identifier.
Diffstat (limited to 'src/lib/video_content.cc')
| -rw-r--r-- | src/lib/video_content.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index 8b0ec4c99..3f6e171a5 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -225,7 +225,8 @@ VideoContent::identifier () const << "_" << crop().left << "_" << crop().right << "_" << crop().top - << "_" << crop().bottom; + << "_" << crop().bottom + << "_" << colour_conversion().identifier (); if (ratio()) { s << "_" << ratio()->id (); |
