summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-09-19 22:58:02 +0200
committerCarl Hetherington <cth@carlh.net>2021-09-19 22:58:02 +0200
commitd0070054da8bd1ac06b41cbd41c2583cf1265e10 (patch)
treeeda9d8778a6872d88c24ff2d41957d766e2451b1
parent446b8e0a4400ebf32fec4afd764ec3c73498f4bc (diff)
Add state of _reencode_j2k to the video identifier.
Otherwise if we change the state of this and re-make a DCP it will not re-encode the J2K.
-rw-r--r--src/lib/film.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 94e996e19..297da7750 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -267,6 +267,10 @@ Film::video_identifier () const
s += "_3D";
}
+ if (_reencode_j2k) {
+ s += "_R";
+ }
+
return s;
}