X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fbutler.cc;h=112778e25184794f7f72e20dd1f790192854c7be;hb=1e0425dc769a0a909d20de7af373bff3f38de8d2;hp=138ee0fbdeb4630e91adf8717077e2532d177b3e;hpb=ae4f0d9f55489ddc50b3e5f0d713621ee8f50645;p=dcpomatic.git 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; }