diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-04 16:44:20 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-04 16:44:20 +0000 |
| commit | 3753cb8685e1755b067676345a5871db24149d0f (patch) | |
| tree | 96dbcc8bd10583fcb1ee23823855b0e8ea7aa0fd /src/lib/image_content.cc | |
| parent | f0738a22fc7555c306d49bcd1c356ce210e2c0e2 (diff) | |
Add support for no-scale of the input video.
Requested-by: Gérald Maruccia
Diffstat (limited to 'src/lib/image_content.cc')
| -rw-r--r-- | src/lib/image_content.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/image_content.cc b/src/lib/image_content.cc index 2d29df0c4..fd0b57894 100644 --- a/src/lib/image_content.cc +++ b/src/lib/image_content.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington <cth@carlh.net> + Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net> 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 @@ -50,9 +50,9 @@ ImageContent::ImageContent (shared_ptr<const Film> f, boost::filesystem::path p) } -ImageContent::ImageContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node, int) +ImageContent::ImageContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node, int version) : Content (f, node) - , VideoContent (f, node) + , VideoContent (f, node, version) { } |
