From: Lars Op den Kamp Date: Wed, 7 Dec 2011 22:53:57 +0000 (+0100) Subject: cec: start the background polling thread after 10 seconds instead of 30 X-Git-Tag: upstream/2.2.0~1^2~44^2~17 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=bdb0f7f4bcd0bc1d8ebb18c6747aa25d7cd5e135;p=deb_libcec.git cec: start the background polling thread after 10 seconds instead of 30 --- diff --git a/src/lib/CECProcessor.cpp b/src/lib/CECProcessor.cpp index 463e044..210f44b 100644 --- a/src/lib/CECProcessor.cpp +++ b/src/lib/CECProcessor.cpp @@ -1335,7 +1335,7 @@ void *CCECBusScan::Process(void) while (!IsStopped()) { - if (++iCounter < 30) + if (++iCounter < 10) { Sleep(1000); continue;