From be101d226a74a2bd6b7c99d6d7a17dfac1b458d6 Mon Sep 17 00:00:00 2001 From: littlesat Date: Sat, 4 Mar 2017 13:05:20 +0100 Subject: [PATCH] Exclude two type of tuners with wrong snr/db value in dvb api 5 --- lib/dvb/frontend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dvb/frontend.cpp b/lib/dvb/frontend.cpp index b23a685e58d..19ce7fb1b41 100644 --- a/lib/dvb/frontend.cpp +++ b/lib/dvb/frontend.cpp @@ -1165,7 +1165,7 @@ int eDVBFrontend::readFrontendData(int type) int signalquality = 0; int signalqualitydb = 0; #if DVB_API_VERSION > 5 || DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR >= 10 - if (m_dvbversion >= DVB_VERSION(5, 10)) + if (m_dvbversion >= DVB_VERSION(5, 10) && !strstr(m_description, "FTM-4862 (Availink AVL6862)") && !strstr(m_description, "Sundtek")) { dtv_property prop[1]; prop[0].cmd = DTV_STAT_CNR;