Fix some DCP generation bugs and update some tests.
[dcpomatic.git] / src / lib / playlist.cc
index d32ec6ba8ac911e70295d70840a1ce67347be4b7..5ee764a8e73d4e14491e3bac9d6333b19fb87392 100644 (file)
@@ -73,7 +73,6 @@ void
 Playlist::content_changed (weak_ptr<Content> c, int p)
 {
        if (p == ContentProperty::LENGTH && _sequence_video && !_sequencing_video) {
-               cout << "sequencing.\n";
                _sequencing_video = true;
 
                ContentList cl = _content;
@@ -85,7 +84,6 @@ Playlist::content_changed (weak_ptr<Content> c, int p)
                        }
 
                        (*i)->set_start (last);
-                       cout << (*i)->file() << " -> " << last << "\n";
                        last = (*i)->end ();
                }