From: Carl Hetherington Date: Tue, 4 Aug 2015 21:54:23 +0000 (+0100) Subject: Add --standard option to dcpomatic_create X-Git-Tag: v2.1.32~1 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=99428af22969a6cfb1dbd2053a9356bb23b3182f Add --standard option to dcpomatic_create --- diff --git a/ChangeLog b/ChangeLog index 581e0d211..2dc353d28 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2015-08-04 Carl Hetherington + * Add --standard option to dcpomatic_create. + * Disable "2D version of 3D content" ISDCF metadata checkbutton with 3D content (part of #652). diff --git a/run/dcpomatic_create b/run/dcpomatic_create index bf3c3c493..63310315e 100755 --- a/run/dcpomatic_create +++ b/run/dcpomatic_create @@ -3,16 +3,16 @@ export LD_LIBRARY_PATH=build/src/lib:build/src/wx:build/src/asdcplib/src:$LD_LIBRARY_PATH if [ "$1" == "--debug" ]; then shift - gdb --args build/src/tools/dcpomatic_create $* + gdb --args build/src/tools/dcpomatic2_create $* elif [ "$1" == "--valgrind" ]; then shift - valgrind --tool="memcheck" build/src/tools/dcpomatic_create $* + valgrind --tool="memcheck" build/src/tools/dcpomatic2_create $* elif [ "$1" == "--callgrind" ]; then shift - valgrind --tool="callgrind" build/src/tools/dcpomatic_create $* + valgrind --tool="callgrind" build/src/tools/dcpomatic2_create $* elif [ "$1" == "--perf" ]; then shift - perf record build/src/tools/dcpomatic_create $* + perf record build/src/tools/dcpomatic2_create $* else - build/src/tools/dcpomatic_create $* + build/src/tools/dcpomatic2_create $* fi diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index d4d4df29b..3d07933e2 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -43,12 +43,9 @@ using boost::shared_ptr; using boost::dynamic_pointer_cast; static void -help (string n) +syntax (string n) { - cerr << "Create a film directory (ready for making a DCP) or metadata file from some content files.\n" - << "A film directory will be created if -o or --output is specified, otherwise a metadata file\n" - << "will be written to stdout.\n" - << "Syntax: " << n << " [OPTION] [ ...]\n" + cerr << "Syntax: " << n << " [OPTION] [ ...]\n" << " -v, --version show DCP-o-matic version\n" << " -h, --help show this help\n" << " -n, --name film name\n" @@ -56,9 +53,18 @@ help (string n) << " --container-ratio 119, 133, 137, 138, 166, 178, 185 or 239\n" << " --content-ratio 119, 133, 137, 138, 166, 178, 185 or 239\n" << " -s, --still-length number of seconds that still content should last\n" + << " --standard SMPTE or interop (default SMPTE)\n" << " -o, --output output directory\n"; } +static void +help (string n) +{ + cerr << "Create a film directory (ready for making a DCP) or metadata file from some content files.\n" + << "A film directory will be created if -o or --output is specified, otherwise a metadata file\n" + << "will be written to stdout.\n"; +} + class SimpleSignalManager : public SignalManager { public: @@ -78,6 +84,7 @@ main (int argc, char* argv[]) Ratio const * container_ratio = 0; Ratio const * content_ratio = 0; int still_length = 10; + dcp::Standard standard = dcp::SMPTE; boost::filesystem::path output; int option_index = 0; @@ -90,11 +97,12 @@ main (int argc, char* argv[]) { "container-ratio", required_argument, 0, 'A'}, { "content-ratio", required_argument, 0, 'B'}, { "still-length", required_argument, 0, 's'}, + { "standard", required_argument, 0, 'C'}, { "output", required_argument, 0, 'o'}, { 0, 0, 0, 0} }; - int c = getopt_long (argc, argv, "vhn:c:A:B:s:o:", long_options, &option_index); + int c = getopt_long (argc, argv, "vhn:c:A:B:C:s:o:", long_options, &option_index); if (c == -1) { break; } @@ -113,7 +121,7 @@ main (int argc, char* argv[]) dcp_content_type = DCPContentType::from_isdcf_name (optarg); if (dcp_content_type == 0) { cerr << "Bad DCP content type.\n"; - help (argv[0]); + syntax (argv[0]); exit (EXIT_FAILURE); } break; @@ -121,7 +129,7 @@ main (int argc, char* argv[]) container_ratio = Ratio::from_id (optarg); if (container_ratio == 0) { cerr << "Bad container ratio.\n"; - help (argv[0]); + syntax (argv[0]); exit (EXIT_FAILURE); } break; @@ -129,7 +137,16 @@ main (int argc, char* argv[]) content_ratio = Ratio::from_id (optarg); if (content_ratio == 0) { cerr << "Bad content ratio " << optarg << ".\n"; - help (argv[0]); + syntax (argv[0]); + exit (EXIT_FAILURE); + } + break; + case 'C': + if (strcmp (optarg, "interop") == 0) { + standard = dcp::INTEROP; + } else if (strcmp (optarg, "SMPTE") != 0) { + cerr << "Bad standard " << optarg << ".\n"; + syntax (argv[0]); exit (EXIT_FAILURE); } break; @@ -171,6 +188,7 @@ main (int argc, char* argv[]) film->set_container (container_ratio); film->set_dcp_content_type (dcp_content_type); + film->set_interop (standard == dcp::INTEROP); for (int i = optind; i < argc; ++i) { shared_ptr c = content_factory (film, argv[i]);