From ca411c57e1e1d20006124f138fb4f9768c5acb3f Mon Sep 17 00:00:00 2001 From: Joris van Rantwijk Date: Thu, 29 May 2014 18:28:59 +0200 Subject: [PATCH] Wait a bit longer before accepting stereo lock. --- FmDecode.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FmDecode.cc b/FmDecode.cc index 547800c..96474a9 100644 --- a/FmDecode.cc +++ b/FmDecode.cc @@ -104,7 +104,7 @@ PilotPhaseLock::PilotPhaseLock(double freq, double bandwidth, double minsignal) // Set valid signal threshold. m_minsignal = minsignal; - m_lock_delay = int(10.0 / bandwidth); + m_lock_delay = int(20.0 / bandwidth); m_lock_cnt = 0; m_pilot_level = 0;