summaryrefslogtreecommitdiff
path: root/src/lib/video_content.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/video_content.h')
-rw-r--r--src/lib/video_content.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/video_content.h b/src/lib/video_content.h
index 9577d2d85..b93744053 100644
--- a/src/lib/video_content.h
+++ b/src/lib/video_content.h
@@ -22,9 +22,14 @@
#include "colour_conversion.h"
#include "video_content_scale.h"
+#include "dcpomatic_time.h"
+#include "user_property.h"
+#include <boost/thread/mutex.hpp>
+#include <boost/weak_ptr.hpp>
class VideoExaminer;
class Ratio;
+class Film;
class VideoContentProperty
{
@@ -174,7 +179,7 @@ private:
void add_properties (std::list<UserProperty> &) const;
boost::weak_ptr<const Film> _film;
- boost::mutex _mutex;
+ mutable boost::mutex _mutex;
Frame _video_length;
/** Video frame rate, or not set if this content should use the DCP's frame rate */
boost::optional<double> _video_frame_rate;