summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-11 22:24:44 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-12 01:22:10 +0200
commit498806d76160a6b1fa0af58e7734c0f553abf12b (patch)
treec5898dca2e84901ea003decb1f3671226d8e53c9 /tools
parent7d66bda50ade8ea618f331b885f1bfa4fa0a2af9 (diff)
Specify CPL standard on construction.
Then choose which standard DCP should use based on the CPL(s).
Diffstat (limited to 'tools')
-rw-r--r--tools/dcprecover.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dcprecover.cc b/tools/dcprecover.cc
index f9e08087..f78b246c 100644
--- a/tools/dcprecover.cc
+++ b/tools/dcprecover.cc
@@ -155,7 +155,7 @@ main (int argc, char* argv[])
dcp::DCP fixed (*output);
fixed.add (cpl);
fixed.resolve_refs (assets);
- fixed.write_xml (dcp::Standard::INTEROP);
+ fixed.write_xml ();
cout << "Fixed XML files written to " << output->string() << "\n";
}