summaryrefslogtreecommitdiff
path: root/src/lib/playlist.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-02-27 22:56:42 +0000
committerCarl Hetherington <cth@carlh.net>2018-02-27 22:56:42 +0000
commitf508191f9d794e7762270d19a4211739470cfe0d (patch)
treef6deb3d3bb14e7d52dbbfe528481f6c9b6120f7b /src/lib/playlist.cc
parentcb0d899ec71a854e8d54213245812702d85b5670 (diff)
Remove some unused code.
Diffstat (limited to 'src/lib/playlist.cc')
-rw-r--r--src/lib/playlist.cc45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc
index 12832cfd7..d2ac95cd3 100644
--- a/src/lib/playlist.cc
+++ b/src/lib/playlist.cc
@@ -544,51 +544,6 @@ Playlist::content_summary (DCPTimePeriod period) const
return best_summary;
}
-bool
-Playlist::video_content_at (DCPTime time) const
-{
- BOOST_FOREACH (shared_ptr<Content> i, _content) {
- if (i->video && i->position() <= time && time < i->end()) {
- return true;
- }
- }
-
- return false;
-}
-
-bool
-Playlist::audio_content_at (DCPTime time) const
-{
- BOOST_FOREACH (shared_ptr<Content> i, _content) {
- if (!i->audio) {
- continue;
- }
- if (i->position() <= time && time < i->end()) {
- return true;
- }
- }
-
- return false;
-}
-
-shared_ptr<Content>
-Playlist::next_audio_content (DCPTime time) const
-{
- shared_ptr<Content> next;
- DCPTime next_position;
- BOOST_FOREACH (shared_ptr<Content> i, _content) {
- if (!i->audio) {
- continue;
- }
- if (i->position() >= time && (!next || i->position() < next_position)) {
- next = i;
- next_position = i->position();
- }
- }
-
- return next;
-}
-
pair<double, double>
Playlist::speed_up_range (int dcp_video_frame_rate) const
{