summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-02-02 09:57:29 +0000
committerCarl Hetherington <cth@carlh.net>2018-02-02 09:57:29 +0000
commit5e0a4699d50931aafaca2801fa8b010549ab3abc (patch)
treee269c97d752faabf879fc904d6656cdc4231931e /src/lib
parent0a21837db5915b6086f9e34d468eb69e792ee451 (diff)
Remove some debugging code.
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 ();