diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-04-12 16:43:45 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-18 11:50:29 +0100 |
| commit | 36774ee2b48f0bfde43b743592e5816ff58bb7d2 (patch) | |
| tree | 1974d8e7e1b05338429bd40da57092d6e5a0e59a /src/lib/video_content.h | |
| parent | 3ef438f90729d78ad579bbeb7933b3cf4f09c10c (diff) | |
Innocuous build fixes.
Diffstat (limited to 'src/lib/video_content.h')
| -rw-r--r-- | src/lib/video_content.h | 7 |
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; |
