summaryrefslogtreecommitdiff
path: root/src/lib/content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-09 19:58:37 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-18 11:50:29 +0100
commit19f94521139aac13ef8fb4eaa55855b2ada307b4 (patch)
tree6e4b457c1fa46c674433fb1a5d2a9cd0f07c5a11 /src/lib/content.h
parent0a2d40420813403a96352c6dc895d23fcd9994c0 (diff)
Move video frame rate ('prepared-for') into Content.
Diffstat (limited to 'src/lib/content.h')
-rw-r--r--src/lib/content.h22
1 files changed, 20 insertions, 2 deletions
diff --git a/src/lib/content.h b/src/lib/content.h
index 60dd89b97..53de14ac1 100644
--- a/src/lib/content.h
+++ b/src/lib/content.h
@@ -54,6 +54,7 @@ public:
static int const LENGTH;
static int const TRIM_START;
static int const TRIM_END;
+ static int const VIDEO_FRAME_RATE;
};
/** @class Content
@@ -93,8 +94,6 @@ public:
*/
virtual std::list<DCPTime> reel_split_points () const;
- virtual void changed (int) {}
-
boost::shared_ptr<Content> clone () const;
void set_path (boost::filesystem::path);
@@ -158,6 +157,15 @@ public:
DCPTime length_after_trim () const;
+ boost::optional<double> video_frame_rate () const {
+ boost::mutex::scoped_lock lm (_mutex);
+ return _video_frame_rate;
+ }
+
+ void set_video_frame_rate (double r);
+
+ double active_video_frame_rate () const;
+
void set_change_signals_frequent (bool f) {
_change_signals_frequent = f;
}
@@ -189,10 +197,20 @@ protected:
std::vector<boost::filesystem::path> _paths;
private:
+ friend struct ffmpeg_pts_offset_test;
+ friend struct best_dcp_frame_rate_test_single;
+ friend struct best_dcp_frame_rate_test_double;
+ friend struct audio_sampling_rate_test;
+
std::string _digest;
DCPTime _position;
ContentTime _trim_start;
ContentTime _trim_end;
+ /** The video frame rate that this content is or was prepared to be used with,
+ * or empty if the effective rate of this content should be dictated by something
+ * else (either some video happening at the same time, or the rate of the DCP).
+ */
+ boost::optional<double> _video_frame_rate;
bool _change_signals_frequent;
};