diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-07-07 21:08:57 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-07-07 21:08:57 +0100 |
| commit | 9c56ecf1d3861f07faa12d485e01a97903832c89 (patch) | |
| tree | b7e265dfedaa35e8575ea69f53bc1219d11d21ee /src/tools | |
| parent | 3cdaafcc94947dc6a7b79c6c4b1647335dff68a2 (diff) | |
Another fix for dcpomatic_create with image sequences.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_create.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index 6cf4a9c64..a9d1165f1 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -269,7 +269,7 @@ main (int argc, char* argv[]) ContentList content = film->content (); for (ContentList::iterator i = content.begin(); i != content.end(); ++i) { shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (*i); - if (ic) { + if (ic && ic->still()) { ic->video->set_length (still_length * 24); } } |
