From c5accbe3efc340960720a80ca1004516d60bdd71 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 5 Apr 2017 22:14:24 +0200 Subject: [PATCH] Make the mixer much less noisy when dealing with frame rate mismatches. --- mixer.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 } -- 2.39.2