diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-19 12:10:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-19 12:10:37 +0100 |
| commit | c5a18da25dd7bba0f65e00312eabc130d5f66fa9 (patch) | |
| tree | f8ab99b5f7531f8a62760e3a1dc7f7068ae9dd19 /src/lib/playlist.h | |
| parent | ba17803f7e33be2bea1363b5a7115e4713dd5997 (diff) | |
Remove old looping method.
Diffstat (limited to 'src/lib/playlist.h')
| -rw-r--r-- | src/lib/playlist.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/lib/playlist.h b/src/lib/playlist.h index 330681c56..735ef7a43 100644 --- a/src/lib/playlist.h +++ b/src/lib/playlist.h @@ -65,19 +65,11 @@ public: typedef std::vector<boost::shared_ptr<Content> > ContentList; - ContentList content_without_loop () const; - ContentList content_with_loop () const; + ContentList content () const; std::string video_identifier () const; - int loop () const { - return _loop; - } - - void set_loop (int l); - - Time length_without_loop () const; - Time length_with_loop () const; + Time length () const; int best_dcp_frame_rate () const; Time video_end () const; @@ -94,7 +86,6 @@ private: void reconnect (); ContentList _content; - int _loop; bool _sequence_video; bool _sequencing_video; std::list<boost::signals2::connection> _content_connections; |
