diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-03 02:02:53 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-04 20:48:35 +0200 |
| commit | 4b8b74ae8ae721f2fbf317f1d7ce5be6048ae1b0 (patch) | |
| tree | 657138b1d1254363719f674230bb41b26d2cd311 /src/lib/film.cc | |
| parent | 8d9e73b753ed51067d93aa377bb24400ff22936e (diff) | |
Move chain to the Interop/SMPTE metadata.
Diffstat (limited to 'src/lib/film.cc')
| -rw-r--r-- | src/lib/film.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 9857dc1f1..147470585 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -886,8 +886,8 @@ Film::isdcf_name (bool if_created_now) const d += "-RedBand"; } - if (!dm.chain.empty ()) { - d += "-" + dm.chain; + if (_chain && !_chain->empty()) { + d += "-" + *_chain; } if (three_d ()) { |
