diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-06-18 13:30:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-06-18 13:30:37 +0100 |
| commit | 4a677ee9e750efc330c29df69f19dae27f09aa4d (patch) | |
| tree | 27dcbaa8d1cddd711b5f34d4346361510a2c73ca /src | |
| parent | e385ef84b198d9ec51c3d2a117d8ef8cfb7292d1 (diff) | |
Forward-port thinko fix from v1.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/playlist.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/playlist.cc b/src/lib/playlist.cc index 5203160a8..41ed00b24 100644 --- a/src/lib/playlist.cc +++ b/src/lib/playlist.cc @@ -306,7 +306,7 @@ Playlist::active_frame_rate_change (DCPTime t, int dcp_video_frame_rate) const for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) { shared_ptr<const VideoContent> vc = dynamic_pointer_cast<const VideoContent> (*i); if (!vc) { - break; + continue; } if (vc->position() >= t && t < vc->end()) { |
