summaryrefslogtreecommitdiff
path: root/src/lib/video_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-03-07 19:07:35 +0000
committerCarl Hetherington <cth@carlh.net>2014-03-07 19:07:35 +0000
commit978be856218cc15f059b7e267811e7302c37b24d (patch)
tree41b97f950dbc5c30953abe4e98ca5053bdff73bc /src/lib/video_content.cc
parentae0e45e03ab168de0d291cfa1520beedd6a0a899 (diff)
Remove template from TimedAudioBuffers; a couple of small fixes.
Diffstat (limited to 'src/lib/video_content.cc')
-rw-r--r--src/lib/video_content.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc
index d6122eb51..11310c5da 100644
--- a/src/lib/video_content.cc
+++ b/src/lib/video_content.cc
@@ -180,13 +180,11 @@ VideoContent::take_from_video_examiner (shared_ptr<VideoExaminer> d)
/* These examiner calls could call other content methods which take a lock on the mutex */
dcp::Size const vs = d->video_size ();
float const vfr = d->video_frame_rate ();
- cout << "taking " << vfr << "\n";
{
boost::mutex::scoped_lock lm (_mutex);
_video_size = vs;
_video_frame_rate = vfr;
- cout << "and then " << _video_frame_rate << "\n";
}
signal_changed (VideoContentProperty::VIDEO_SIZE);