diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-04 11:13:04 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-04 11:13:04 +0100 |
| commit | af87bfc82beee0b0600558c84c3843dfd5a252f6 (patch) | |
| tree | 6f0cb5a87ba4662ac1e23fae67589be9d374e4f6 /examples | |
| parent | 09ad2806848f5c3609b7915da504f94db099e3af (diff) | |
Split metadata into XML and MXF bits; remove singleton.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/make_dcp.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/make_dcp.cc b/examples/make_dcp.cc index 06dd05ab..0d6a8215 100644 --- a/examples/make_dcp.cc +++ b/examples/make_dcp.cc @@ -108,7 +108,8 @@ main () /* Finally, we call this to write the XML description files to the DCP. After this, the DCP is ready to ingest and play. */ - dcp.write_xml (); + libdcp::XMLMetadata metadata; + dcp.write_xml (metadata); return 0; } |
