summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/make_dcp.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/make_dcp.cc b/examples/make_dcp.cc
index dbd95a52..bbe29545 100644
--- a/examples/make_dcp.cc
+++ b/examples/make_dcp.cc
@@ -101,13 +101,13 @@ main ()
reel->add(std::make_shared<dcp::ReelSoundAsset>(sound_asset, 0));
/* Make a CPL with this reel */
- auto cpl = std::make_shared<dcp::CPL>("My film", dcp::ContentKind::FEATURE);
+ auto cpl = std::make_shared<dcp::CPL>("My film", dcp::ContentKind::FEATURE, dcp::Standard::SMPTE);
cpl->add(reel);
/* Write the DCP */
dcp::DCP dcp ("DCP");
dcp.add (cpl);
- dcp.write_xml (dcp::Standard::SMPTE);
+ dcp.write_xml ();
return 0;
}