mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
Added the force locking quirk for Triax TSS 400.
This commit is contained in:
parent
b1aad3fb80
commit
37e151b3e3
1
HISTORY
1
HISTORY
@ -114,3 +114,4 @@ VDR Plugin 'satip' Revision History
|
||||
- Fixed memory deallocation errors.
|
||||
- Cleaned up all scan-build warnings.
|
||||
- Refactored the frontend handling.
|
||||
- Added the force locking quirk for Triax TSS 400.
|
||||
|
4
server.c
4
server.c
@ -90,7 +90,9 @@ cSatipServer::cSatipServer(const char *addressP, const char *modelP, const char
|
||||
if (strstr(*descriptionM, "fritzdvbc")) // Fritz!WLAN Repeater DVB-C
|
||||
quirkM |= eSatipQuirkPlayPids;
|
||||
// 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;
|
||||
if (quirkM != eSatipQuirkNone)
|
||||
info("Malfunctioning '%s' server detected! Please, fix the firmware.", *descriptionM);
|
||||
|
Loading…
Reference in New Issue
Block a user