Added the force locking quirk for Triax TSS 400.

This commit is contained in:
Rolf Ahrenberg 2015-01-25 23:47:56 +02:00
parent b1aad3fb80
commit 37e151b3e3
2 changed files with 4 additions and 1 deletions

View File

@ -114,3 +114,4 @@ VDR Plugin 'satip' Revision History
- Fixed memory deallocation errors. - Fixed memory deallocation errors.
- Cleaned up all scan-build warnings. - Cleaned up all scan-build warnings.
- Refactored the frontend handling. - Refactored the frontend handling.
- Added the force locking quirk for Triax TSS 400.

View File

@ -90,7 +90,9 @@ cSatipServer::cSatipServer(const char *addressP, const char *modelP, const char
if (strstr(*descriptionM, "fritzdvbc")) // Fritz!WLAN Repeater DVB-C if (strstr(*descriptionM, "fritzdvbc")) // Fritz!WLAN Repeater DVB-C
quirkM |= eSatipQuirkPlayPids; quirkM |= eSatipQuirkPlayPids;
// These devices contain a frontend locking bug: // These devices contain a frontend locking bug:
if (strstr(*descriptionM, "fritzdvbc")) // Fritz!WLAN Repeater DVB-C if (strstr(*descriptionM, "fritzdvbc") || // Fritz!WLAN Repeater DVB-C
strstr(*descriptionM, "Triax SatIP Converter") // Triax TSS 400
)
quirkM |= eSatipQuirkForceLock; quirkM |= eSatipQuirkForceLock;
if (quirkM != eSatipQuirkNone) if (quirkM != eSatipQuirkNone)
info("Malfunctioning '%s' server detected! Please, fix the firmware.", *descriptionM); info("Malfunctioning '%s' server detected! Please, fix the firmware.", *descriptionM);