Reverted the force locking quirk for Triax TSS 400.

This commit is contained in:
Rolf Ahrenberg 2015-01-27 21:31:39 +02:00
parent 3e4b1c0383
commit df258d127f
2 changed files with 2 additions and 4 deletions

View File

@ -114,4 +114,3 @@ 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.

View File

@ -96,8 +96,7 @@ cSatipServer::cSatipServer(const char *addressP, const char *modelP, const char
quirksM = cString::sprintf("%s%sPlayPids", *quirksM, isempty(*quirksM) ? "" : ",");
}
// These devices contain a frontend locking bug:
if (strstr(*descriptionM, "fritzdvbc") || // Fritz!WLAN Repeater DVB-C
strstr(*descriptionM, "Triax SatIP Converter") // Triax TSS 400
if (strstr(*descriptionM, "fritzdvbc") // Fritz!WLAN Repeater DVB-C
) {
quirkM |= eSatipQuirkForceLock;
quirksM = cString::sprintf("%s%sForceLock", *quirksM, isempty(*quirksM) ? "" : ",");
@ -105,7 +104,7 @@ cSatipServer::cSatipServer(const char *addressP, const char *modelP, const char
debug3("%s description=%s quirks=%s", __PRETTY_FUNCTION__, *descriptionM, *quirksM);
}
// These devices support the X_PMT protocol extension
if (strstr(*descriptionM, "OctopusNet")) // Digital Devices OctopusNet
if (strstr(*descriptionM, "OctopusNet")) // Digital Devices OctopusNet
hasCiM = true;
char *s, *p = strdup(*modelM);
char *r = strtok_r(p, ",", &s);