diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-16 20:50:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-16 21:00:36 +0100 |
| commit | 09f8b57ac237c98eae648fc31093cf22495db740 (patch) | |
| tree | 9b62300492c07f6081f7fff667e1fcbe14a0fd7d /src/tools | |
| parent | b2d7764f628926763e648924b267855c59ab4349 (diff) | |
Add --twok option to dcpomatic2_create.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_create.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index e6c948d2d..e298f238c 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -105,6 +105,9 @@ main (int argc, char* argv[]) film->set_use_isdcf_name (!cc.no_use_isdcf_name); film->set_encrypted (cc.encrypt); film->set_three_d (cc.threed); + if (cc.twok) { + film->set_resolution (Resolution::TWO_K); + } if (cc.fourk) { film->set_resolution (Resolution::FOUR_K); } |
