Skip to content

Commit

Permalink
Increase timeout for SDT and NIT capture not only for DVB-T/C/S but a…
Browse files Browse the repository at this point in the history
…lso for DVB-T2 tuners

Fixes #13380

Signed-off-by: Klaas de Waal <kdewaal@mythtv.org>
  • Loading branch information
kmdewaal committed Mar 1, 2019
1 parent de731f4 commit eaf478a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions mythtv/libs/libmythtv/channelscan/channelscanner.cpp
Expand Up @@ -421,9 +421,10 @@ void ChannelScanner::PreScanCommon(
if ("DVB" == card_type)
{
QString sub_type = CardUtil::ProbeDVBType(device).toUpper();
bool need_nit = (("QAM" == sub_type) ||
("QPSK" == sub_type) ||
("OFDM" == sub_type));
bool need_nit = (("QAM" == sub_type) ||
("QPSK" == sub_type) ||
("OFDM" == sub_type) ||
("DVB_T2" == sub_type));

// Ugh, Some DVB drivers don't fully support signal monitoring...
if ((ScanTypeSetting::TransportScan == scantype) ||
Expand Down

0 comments on commit eaf478a

Please sign in to comment.