summaryrefslogtreecommitdiff
path: root/src/tools/dcpomatic_cli.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-07-20 16:01:43 +0100
committerCarl Hetherington <cth@carlh.net>2016-07-20 16:01:43 +0100
commit4cb64738c9dae07651403341de17c5b280682495 (patch)
treeec27fd467251edef5e3c7b51a030e90bf88b2286 /src/tools/dcpomatic_cli.cc
parent850dd1e87adfa2b88b70d909daa29cc82c9ff386 (diff)
Add -t/--threads option to dcpomatic2_cli.
Diffstat (limited to 'src/tools/dcpomatic_cli.cc')
-rw-r--r--src/tools/dcpomatic_cli.cc12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc
index 096a3b118..bd1a4e4aa 100644
--- a/src/tools/dcpomatic_cli.cc
+++ b/src/tools/dcpomatic_cli.cc
@@ -59,6 +59,7 @@ help (string n)
<< " -f, --flags show flags passed to C++ compiler on build\n"
<< " -n, --no-progress do not print progress to stdout\n"
<< " -r, --no-remote do not use any remote servers\n"
+ << " -t, --threads specify number of local encoding threads (overriding configuration)\n"
<< " -j, --json <port> run a JSON server on the specified port\n"
<< " -k, --keep-going keep running even when the job is complete\n"
<< " -s, --servers just display a list of encoding servers that DCP-o-matic is configured to use; don't encode\n"
@@ -175,6 +176,7 @@ main (int argc, char* argv[])
string film_dir;
bool progress = true;
bool no_remote = false;
+ optional<int> threads;
optional<int> json_port;
bool keep_going = false;
bool dump = false;
@@ -189,6 +191,7 @@ main (int argc, char* argv[])
{ "flags", no_argument, 0, 'f'},
{ "no-progress", no_argument, 0, 'n'},
{ "no-remote", no_argument, 0, 'r'},
+ { "threads", required_argument, 0, 't'},
{ "json", required_argument, 0, 'j'},
{ "keep-going", no_argument, 0, 'k' },
{ "servers", no_argument, 0, 's' },
@@ -198,7 +201,7 @@ main (int argc, char* argv[])
{ 0, 0, 0, 0 }
};
- int c = getopt_long (argc, argv, "vhfnrj:kAsd", long_options, &option_index);
+ int c = getopt_long (argc, argv, "vhfnrt:j:kAsd", long_options, &option_index);
if (c == -1) {
break;
@@ -220,6 +223,9 @@ main (int argc, char* argv[])
case 'r':
no_remote = true;
break;
+ case 't':
+ threads = atoi (optarg);
+ break;
case 'j':
json_port = atoi (optarg);
break;
@@ -263,6 +269,10 @@ main (int argc, char* argv[])
new JSONServer (json_port.get ());
}
+ if (threads) {
+ Config::instance()->set_num_local_encoding_threads (threads.get ());
+ }
+
shared_ptr<Film> film;
try {
film.reset (new Film (film_dir));