summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-03-04 16:44:20 +0000
committerCarl Hetherington <cth@carlh.net>2014-03-04 16:44:20 +0000
commit3753cb8685e1755b067676345a5871db24149d0f (patch)
tree96dbcc8bd10583fcb1ee23823855b0e8ea7aa0fd /src/tools
parentf0738a22fc7555c306d49bcd1c356ce210e2c0e2 (diff)
Add support for no-scale of the input video.
Requested-by: Gérald Maruccia
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic_create.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc
index 05121652a..3dfbd63b5 100644
--- a/src/tools/dcpomatic_create.cc
+++ b/src/tools/dcpomatic_create.cc
@@ -155,7 +155,7 @@ main (int argc, char* argv[])
shared_ptr<Content> c = content_factory (film, argv[i]);
shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (c);
if (vc) {
- vc->set_ratio (content_ratio);
+ vc->set_scale (VideoContentScale (content_ratio));
}
film->examine_and_add_content (c);
}