Fix mis-merge.
authorCarl Hetherington <cth@carlh.net>
Mon, 15 Jul 2013 21:05:28 +0000 (22:05 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 15 Jul 2013 21:05:28 +0000 (22:05 +0100)
src/lib/playlist.cc

index 028b2b880bea67b3dfa64d3f32bba1157b3dc157..1535ad61f1809a8e47ba1a47a2b966593cfbfdc0 100644 (file)
@@ -75,40 +75,16 @@ Playlist::content_changed (weak_ptr<Content> c, int p)
        if (p == ContentProperty::LENGTH) {
                maybe_sequence_video ();
        }
-<<<<<<< HEAD
        
        ContentChanged (c, p);
 }
 
-=======
 
-       ContentChanged (c, p);
-}
-
->>>>>>> 1ea6a456bc2b4a695f6db4720353c35167597b30
 void
 Playlist::maybe_sequence_video ()
 {
        if (!_sequence_video || _sequencing_video) {
                return;
-<<<<<<< HEAD
-       }
-       
-       _sequencing_video = true;
-       
-       ContentList cl = _content;
-       sort (cl.begin(), cl.end(), ContentSorter ());
-       Time last = 0;
-       for (ContentList::iterator i = cl.begin(); i != cl.end(); ++i) {
-               if (!dynamic_pointer_cast<VideoContent> (*i)) {
-                       continue;
-               }
-               
-               (*i)->set_start (last);
-               last = (*i)->end ();
-       }
-       
-=======
        }
        
        _sequencing_video = true;
@@ -125,7 +101,6 @@ Playlist::maybe_sequence_video ()
                last = (*i)->end ();
        }
        
->>>>>>> 1ea6a456bc2b4a695f6db4720353c35167597b30
        _sequencing_video = false;
 }