From: Steinar H. Gunderson Date: Wed, 5 Apr 2017 20:14:24 +0000 (+0200) Subject: Make the mixer much less noisy when dealing with frame rate mismatches. X-Git-Tag: 1.5.0~2 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=c5accbe3efc340960720a80ca1004516d60bdd71;p=nageru Make the mixer much less noisy when dealing with frame rate mismatches. --- diff --git a/mixer.cpp b/mixer.cpp index 0c00d14..d805bcc 100644 --- a/mixer.cpp +++ b/mixer.cpp @@ -854,10 +854,12 @@ void Mixer::trim_queue(CaptureCard *card, unsigned card_index) ++dropped_frames; } +#if 0 if (dropped_frames > 0) { fprintf(stderr, "Card %u dropped %u frame(s) to keep latency down.\n", card_index, dropped_frames); } +#endif }