From: Carl Hetherington Date: Fri, 27 Jul 2018 15:21:21 +0000 (+0100) Subject: Remove debug code. X-Git-Tag: v2.13.41~12 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=1e0425dc769a0a909d20de7af373bff3f38de8d2 Remove debug code. --- diff --git a/src/lib/butler.cc b/src/lib/butler.cc index 138ee0fbd..112778e25 100644 --- a/src/lib/butler.cc +++ b/src/lib/butler.cc @@ -198,7 +198,6 @@ Butler::get_video () } pair, DCPTime> const r = _video.get (); - cout << "BGV " << to_string(r.second) << " " << _video.size() << "\n"; _summon.notify_all (); return r; } @@ -234,7 +233,6 @@ Butler::prepare (weak_ptr weak_video) const void Butler::video (shared_ptr video, DCPTime time) { - cout << "BV: " << to_string(time) << " " << _video.size() << " " << (float(_video.size()) / 24) << "\n"; boost::mutex::scoped_lock lm (_mutex); if (_pending_seek_position) { /* Don't store any video while a seek is pending */ @@ -248,7 +246,6 @@ Butler::video (shared_ptr video, DCPTime time) void Butler::audio (shared_ptr audio) { - cout << "BA: " << audio->frames() << " " << _audio.size() << " " << (float(_audio.size()) / 48000) << "\n"; { boost::mutex::scoped_lock lm (_mutex); if (_pending_seek_position || _disable_audio) { @@ -268,7 +265,6 @@ bool Butler::get_audio (float* out, Frame frames) { bool const underrun = _audio.get (out, _audio_channels, frames); - cout << "BGA: " << frames << " " << _audio.size() << " " << (float(_audio.size()) / 48000) << "\n"; _summon.notify_all (); return underrun; }