diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-12 01:37:59 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-12 01:37:59 +0000 |
| commit | ae118502865c95f15317716aef8d26641b9e9c3f (patch) | |
| tree | fb72e4985b8260f490860da84875fd7c6d6d8dae /src/tools | |
| parent | 69d6f62af925aca5706136c5eb5f4194d8d1be3e (diff) | |
Try to move J2K bandwidth and colour LUT to be per-film (#23).
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/makedcp.cc | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/tools/makedcp.cc b/src/tools/makedcp.cc index c0fb7ccee..900c31bfc 100644 --- a/src/tools/makedcp.cc +++ b/src/tools/makedcp.cc @@ -51,7 +51,6 @@ help (string n) << " -v, --version show DVD-o-matic version\n" << " -h, --help show this help\n" << " -d, --deps list DVD-o-matic dependency details and quit\n" - << " -c, --config list configuration settings that affect output and quit\n" << " -t, --test run in test mode (repeatable UUID generation, timestamps etc.)\n" << " -n, --no-progress do not print progress to stdout\n" << " -r, --no-remote do not use any remote servers\n" @@ -74,7 +73,6 @@ main (int argc, char* argv[]) { "version", no_argument, 0, 'v'}, { "help", no_argument, 0, 'h'}, { "deps", no_argument, 0, 'd'}, - { "config", no_argument, 0, 'c'}, { "test", no_argument, 0, 't'}, { "no-progress", no_argument, 0, 'n'}, { "no-remote", no_argument, 0, 'r'}, @@ -82,7 +80,7 @@ main (int argc, char* argv[]) { 0, 0, 0, 0 } }; - int c = getopt_long (argc, argv, "vhdctnrl:", long_options, &option_index); + int c = getopt_long (argc, argv, "vhdtnrl:", long_options, &option_index); if (c == -1) { break; @@ -107,15 +105,6 @@ main (int argc, char* argv[]) case 'r': no_remote = true; break; - case 'c': - cout << "Colour LUT " << colour_lut_index_to_name (Config::instance()->colour_lut_index()) << "; " - << "J2K bandwidth " << Config::instance()->j2k_bandwidth() << "; "; -#ifdef DVDOMATIC_DEBUG - cout << "built in debug mode\n"; -#else - cout << "built in optimised mode\n"; -#endif - exit (EXIT_SUCCESS); case 'l': log_level = atoi (optarg); break; |
