From: Carl Hetherington Date: Fri, 3 Jun 2022 10:55:03 +0000 (+0200) Subject: I'm not sure a cout about audio underruns is really useful. X-Git-Tag: v2.16.14~18 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=9dd77451c76d9cf14f62ee110451e74f91424efd I'm not sure a cout about audio underruns is really useful. --- diff --git a/src/lib/audio_ring_buffers.cc b/src/lib/audio_ring_buffers.cc index b55631a1c..d21f20968 100644 --- a/src/lib/audio_ring_buffers.cc +++ b/src/lib/audio_ring_buffers.cc @@ -75,7 +75,6 @@ AudioRingBuffers::get (float* out, int channels, int frames) *out++ = 0; } } - cout << "audio underrun; missing " << frames << "!\n"; return time; }