From: Carl Hetherington Date: Fri, 2 Feb 2018 09:57:29 +0000 (+0000) Subject: Remove some debugging code. X-Git-Tag: v2.11.48~15 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=5e0a4699d50931aafaca2801fa8b010549ab3abc Remove some debugging code. --- 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 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 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 ();