diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-02-12 23:25:10 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-02-12 23:25:10 +0000 |
| commit | 46bc419019d4c24341a092e6ceb29642ca5f06dc (patch) | |
| tree | c69629aa8741f2c84a38d489a65b8be88960c893 | |
| parent | 548dc3a41c2d84ef2c4bbba73e622496c731b8c0 (diff) | |
Use CPL annotation text for ASSETMAP and PKL (#1048).
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | cscript | 4 | ||||
| -rw-r--r-- | src/lib/writer.cc | 1 |
3 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,7 @@ 2017-02-12 Carl Hetherington <cth@carlh.net> + * Use CPL's annotation text for ASSETMAP and PKL (#1048). + * Fix missing keys in VF KDMs (#975). 2017-02-10 Carl Hetherington <cth@carlh.net> @@ -268,8 +268,8 @@ def dependencies(target): ffmpeg_options = {} return (('ffmpeg-cdist', 'c7df8d5', ffmpeg_options), - ('libdcp', 'db86ed5'), - ('libsub', 'ad7f0ba')) + ('libdcp', '8f964bf'), + ('libsub', 'f6cb371')) def configure_options(target): opt = '' diff --git a/src/lib/writer.cc b/src/lib/writer.cc index 49ba41a64..ccd6d74d1 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -496,6 +496,7 @@ Writer::finish () } dcp::XMLMetadata meta; + meta.annotation_text = cpl->annotation_text (); meta.creator = Config::instance()->dcp_creator (); if (meta.creator.empty ()) { meta.creator = String::compose ("DCP-o-matic %1 %2", dcpomatic_version, dcpomatic_git_commit); |
