diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-06-24 17:03:28 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-06-24 17:03:28 +0200 |
| commit | 9db56a75e50701bb27ac0b3134a70d2be373ac52 (patch) | |
| tree | 37ef0cf4c3dec6355b6997dceffc235de4bbad22 /src | |
| parent | 5523c5b7c0572616d9d76786d0140e6f7f3e7174 (diff) | |
Fix incorrect issuer/creator in CPL files.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/writer.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc index 3d8d9fe78..6b8076875 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -624,6 +624,9 @@ Writer::finish (boost::filesystem::path output_dcp) issuer = String::compose("DCP-o-matic %1 %2", dcpomatic_version, dcpomatic_git_commit); } + cpl->set_creator (creator); + cpl->set_issuer (issuer); + cpl->set_ratings (film()->ratings()); vector<dcp::ContentVersion> cv; |
