From d0070054da8bd1ac06b41cbd41c2583cf1265e10 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 19 Sep 2021 22:58:02 +0200 Subject: [PATCH] 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. --- src/lib/film.cc | 4 ++++ 1 file changed, 4 insertions(+) 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; } -- 2.30.2