Forward-port thinko fix from v1.
authorCarl Hetherington <cth@carlh.net>
Wed, 18 Jun 2014 12:30:37 +0000 (13:30 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 18 Jun 2014 12:30:37 +0000 (13:30 +0100)
src/lib/playlist.cc

index 5203160a876373258748e6c7b0f0663c3375d66c..41ed00b24d6c06b341a300f40c732b357ca96a1f 100644 (file)
@@ -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()) {