mirror of
https://github.com/rofafor/vdr-plugin-satip.git
synced 2023-10-10 13:37:42 +02:00
Update quirks for FRITZ!WLAN Repeater DVB-C and FRITZ!Box 6490 Cable devices.
This commit is contained in:
parent
5e524a969e
commit
438f5c9254
2
HISTORY
2
HISTORY
@ -181,3 +181,5 @@ VDR Plugin 'satip' Revision History
|
|||||||
- Added Polish translation (Thanks to Tomasz Nowak).
|
- Added Polish translation (Thanks to Tomasz Nowak).
|
||||||
- Updated Catalan and Spanish translations (Thanks to Gabriel Bonich).
|
- Updated Catalan and Spanish translations (Thanks to Gabriel Bonich).
|
||||||
- Added support for KATHREIN SatIP Server (Thanks to kavanu).
|
- Added support for KATHREIN SatIP Server (Thanks to kavanu).
|
||||||
|
- Added support for FRITZ!Box 6490 Cable (Thanks to 9000h).
|
||||||
|
- Updated FRITZ!WLAN Repeater DVB-C detection for the latest firmware (Thanks to 9000h).
|
||||||
|
6
server.c
6
server.c
@ -127,11 +127,13 @@ cSatipServer::cSatipServer(const char *addressP, const int portP, const char *mo
|
|||||||
)
|
)
|
||||||
quirkM |= eSatipQuirkRtpOverTcp;
|
quirkM |= eSatipQuirkRtpOverTcp;
|
||||||
// These devices contain a play (add/delpids) parameter bug:
|
// These devices contain a play (add/delpids) parameter bug:
|
||||||
if (strstr(*descriptionM, "fritzdvbc") // Fritz!WLAN Repeater DVB-C
|
if (strstr(*descriptionM, "FRITZ!Box 6490 Cable") || // FRITZ!Box 6490 Cable
|
||||||
|
strstr(*descriptionM, "FRITZ!WLAN Repeater DVB-C") // 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, "FRITZ!Box 6490 Cable") || // FRITZ!Box 6490 Cable
|
||||||
|
strstr(*descriptionM, "FRITZ!WLAN Repeater DVB-C") || // FRITZ!WLAN Repeater DVB-C
|
||||||
strstr(*descriptionM, "Schwaiger Sat>IP Server") // Schwaiger MS41IP
|
strstr(*descriptionM, "Schwaiger Sat>IP Server") // Schwaiger MS41IP
|
||||||
)
|
)
|
||||||
quirkM |= eSatipQuirkForceLock;
|
quirkM |= eSatipQuirkForceLock;
|
||||||
|
Loading…
Reference in New Issue
Block a user