Skip to content

Commit

Permalink
V2 Services: Fix GetCaptureDeviceList HDHOMERUN processing
Browse files Browse the repository at this point in the history
  • Loading branch information
bennettpeter committed Aug 3, 2022
1 parent ad9ab9e commit 8ab54e8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mythtv/programs/mythbackend/servicesv2/v2capture.cpp
Expand Up @@ -588,6 +588,7 @@ V2CaptureDeviceList* V2Capture::GetCaptureDeviceList ( const QString &sCardTyp
pDev->setCardType (sCardType);
pDev->setVideoDevice (it);
#ifdef USING_DVB
// From DVBConfigurationGroup::probeCard in Videosource.cpp
if (sCardType == "DVB")
{
QString frontendName = CardUtil::ProbeDVBFrontendName(it);
Expand Down Expand Up @@ -682,6 +683,13 @@ V2CaptureDeviceList* V2Capture::GetCaptureDeviceList ( const QString &sCardTyp
pDev->setTuningDelay ( tuningDelay );
} // endif (sCardType == "DVB")
#endif // USING_DVB
#ifdef USING_HDHOMERUN
else if (sCardType == "HDHOMERUN")
{
pDev->setSignalTimeout ( 3000 );
pDev->setChannelTimeout ( 6000 );
}
#endif //USING_HDHOMERUN
} // endfor (const auto & it : qAsConst(sdevs))
return pList;
}
Expand Down

0 comments on commit 8ab54e8

Please sign in to comment.