diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-11-22 02:16:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-11-26 00:09:27 +0100 |
| commit | 5799460dc38bafa1da1ce9f7bf43621d3fadf442 (patch) | |
| tree | a4666f4bf8f99f29716e8d68113320426b0a1c95 /src/lib/content.h | |
| parent | aaf6845e130ac208cee524536b67c54bd1ce8ed9 (diff) | |
Noisy change to get film into AudioContent::modify_trim_start().
Diffstat (limited to 'src/lib/content.h')
| -rw-r--r-- | src/lib/content.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/content.h b/src/lib/content.h index ba4c23ddf..5b804b331 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -153,7 +153,7 @@ public: return _position; } - void set_trim_start (dcpomatic::ContentTime); + void set_trim_start(std::shared_ptr<const Film> film, dcpomatic::ContentTime); dcpomatic::ContentTime trim_start () const { boost::mutex::scoped_lock lm (_mutex); @@ -179,7 +179,7 @@ public: return _video_frame_rate; } - void set_video_frame_rate (double r); + void set_video_frame_rate(std::shared_ptr<const Film> film, double r); void unset_video_frame_rate (); double active_video_frame_rate (std::shared_ptr<const Film> film) const; |
