summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/shuffler.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/shuffler.cc b/src/lib/shuffler.cc
index 997d91fb1..84bf98ed2 100644
--- a/src/lib/shuffler.cc
+++ b/src/lib/shuffler.cc
@@ -42,8 +42,6 @@ struct Comparator
void
Shuffler::video (weak_ptr<Piece> weak_piece, ContentVideo video)
{
- std::cout << "shuffler gets " << video.frame << " " << video.eyes << "\n";
-
/* Something has gong wrong if our store gets too big */
DCPOMATIC_ASSERT (_store.size() != 8);
/* We should only ever see 3D_LEFT / 3D_RIGHT */
@@ -71,7 +69,6 @@ Shuffler::video (weak_ptr<Piece> weak_piece, ContentVideo video)
)
) {
- std::cout << "shuffler emits " << _store.front().second.frame << " " << _store.front().second.eyes << "\n";
Video (_store.front().first, _store.front().second);
_last = _store.front().second;
_store.pop_front ();