diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-16 15:38:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-12 11:05:26 +0100 |
| commit | dbfbdcba0f5f08a932ba199039f2ca1530e482ac (patch) | |
| tree | 94b52a2b51229a2030280db9d259cb52897658ab /src/lib/film.h | |
| parent | 9610f4035114f499d098e8fd2d726d55ddd943ee (diff) | |
Basics of reel split.
Diffstat (limited to 'src/lib/film.h')
| -rw-r--r-- | src/lib/film.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index 0aa08e425..937ab99e8 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -70,10 +70,10 @@ public: Film (boost::filesystem::path, bool log = true); ~Film (); - boost::filesystem::path info_file () const; + boost::filesystem::path info_file (DCPTimePeriod p) const; boost::filesystem::path j2c_path (int, Eyes, bool) const; boost::filesystem::path internal_video_asset_dir () const; - boost::filesystem::path internal_video_asset_filename () const; + boost::filesystem::path internal_video_asset_filename (DCPTimePeriod p) const; boost::filesystem::path audio_analysis_path (boost::shared_ptr<const Playlist>) const; @@ -151,6 +151,8 @@ public: return _playlist; } + std::list<DCPTimePeriod> reels () const; + /** Identifiers for the parts of our state; used for signalling changes. */ |
