Skip to content

Commit

Permalink
Exclude two type of tuners with wrong snr/db value in dvb api 5
Browse files Browse the repository at this point in the history
  • Loading branch information
littlesat committed Mar 4, 2017
1 parent d199364 commit be101d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dvb/frontend.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit be101d2

Please sign in to comment.