summaryrefslogtreecommitdiff
path: root/src/lib/film.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-04-30 00:52:17 +0100
committerCarl Hetherington <cth@carlh.net>2017-04-30 00:52:17 +0100
commit6f27d1dde8fe133e1a589c36d5bffc105437fb77 (patch)
tree4c1c272f8275898a71c0af773ddd82ce5c213ee0 /src/lib/film.cc
parentc820a285c5c78a2a371eb0dc6e78ad85b50a4ccc (diff)
Try to improve hint when making a DCP which is not 24 or 48fps.
Diffstat (limited to 'src/lib/film.cc')
-rw-r--r--src/lib/film.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 218dc58ef..df19af77f 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -1584,3 +1584,9 @@ Film::use_template (string name)
_reel_length = _template_film->_reel_length;
_upload_after_make_dcp = _template_film->_upload_after_make_dcp;
}
+
+pair<double, double>
+Film::speed_up_range (int dcp_frame_rate) const
+{
+ return _playlist->speed_up_range (dcp_frame_rate);
+}