summaryrefslogtreecommitdiff
path: root/src/lib/video_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-04-07 01:25:12 +0100
committerCarl Hetherington <cth@carlh.net>2013-04-07 01:25:12 +0100
commit21ae33095a251da25b3c5a85bc52fad63e04db0b (patch)
treea67e784269fd9f1f62967cd0f660cf134848bf64 /src/lib/video_content.cc
parent3cc96e5cc65456f4aeb4625f56087da33da47b48 (diff)
Fix still video playback.
Diffstat (limited to 'src/lib/video_content.cc')
-rw-r--r--src/lib/video_content.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc
index 8176c5c41..9fb2b9bce 100644
--- a/src/lib/video_content.cc
+++ b/src/lib/video_content.cc
@@ -73,7 +73,7 @@ VideoContent::take_from_video_decoder (shared_ptr<VideoDecoder> d)
{
/* These decoder calls could call other content methods which take a lock on the mutex */
libdcp::Size const vs = d->native_size ();
- float const vfr = d->frames_per_second ();
+ float const vfr = d->video_frame_rate ();
{
boost::mutex::scoped_lock lm (_mutex);