summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-06-10 15:33:26 +0100
committerCarl Hetherington <cth@carlh.net>2014-06-10 15:33:26 +0100
commite7bc3bd16456c17bc6fe1d7981040b14e820505e (patch)
treecd37e3bbaceb58206a9b9286d54946e7835d6af7 /src/tools
parent2b2c655fd39fbdae9f6298c3bde171da126dc470 (diff)
Use ISDCF rather than DCI when talking about the digital cinema
naming convention (#362). Reported-by: Mattias Mattsson
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic_create.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc
index a49780276..c30f4e51e 100644
--- a/src/tools/dcpomatic_create.cc
+++ b/src/tools/dcpomatic_create.cc
@@ -74,7 +74,7 @@ main (int argc, char* argv[])
dcpomatic_setup ();
string name;
- DCPContentType const * dcp_content_type = DCPContentType::from_dci_name ("TST");
+ DCPContentType const * dcp_content_type = DCPContentType::from_isdcf_name ("TST");
Ratio const * container_ratio = 0;
Ratio const * content_ratio = 0;
int still_length = 10;
@@ -110,7 +110,7 @@ main (int argc, char* argv[])
name = optarg;
break;
case 'c':
- dcp_content_type = DCPContentType::from_dci_name (optarg);
+ dcp_content_type = DCPContentType::from_isdcf_name (optarg);
if (dcp_content_type == 0) {
cerr << "Bad DCP content type.\n";
help (argv[0]);