summaryrefslogtreecommitdiff
path: root/src/dcp.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-03-01 19:41:09 +0100
committerCarl Hetherington <cth@carlh.net>2023-03-01 19:41:09 +0100
commitb3787f9db738723bdb15a2a86feeb84f1b6d593c (patch)
treed30825fd5c5c35f500045b69821814eb098f8ed3 /src/dcp.h
parente2b29fb7033ff554988ce1bfc781822a821cfa15 (diff)
Add include_mca_subdescriptors to DCP::write_xml(), passing it through to the CPL.
Diffstat (limited to 'src/dcp.h')
-rw-r--r--src/dcp.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dcp.h b/src/dcp.h
index 7d3d670a..8ce6a96d 100644
--- a/src/dcp.h
+++ b/src/dcp.h
@@ -151,12 +151,13 @@ public:
void set_annotation_text(std::string annotation_text);
/** Write all the XML files for this DCP.
- * @param standand INTEROP or SMPTE
* @param signer Signer to use
+ * @param include_mca_subdescriptors true to write MCA subdescriptors to CPLs.
* @param name_format Name format to use for the CPL and PKL filenames
*/
- void write_xml (
+ void write_xml(
std::shared_ptr<const CertificateChain> signer = std::shared_ptr<const CertificateChain>(),
+ bool include_mca_subdescriptors = false,
NameFormat name_format = NameFormat("%t")
);