Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
SAT>IP client: remove idl4k hack for very old firmware V1.13.0.105, f…
…ixes #3613
  • Loading branch information
perexg committed Mar 9, 2016
1 parent 4d6d55b commit 66d3b0b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/input/mpegts/satip/satip.c
Expand Up @@ -516,6 +516,9 @@ satip_device_hack( satip_device_t *sd )
{
if(sd->sd_disable_workarounds)
return;
#if 0
/* V1.24.0.156 cannot be distinguished from V1.13.0.105 :-( */
/* hopefully, all users have V1.16.0.120+ now */
if (sd->sd_info.deviceid[0] &&
strcmp(sd->sd_info.server, "Linux/1.0 UPnP/1.1 IDL4K/1.0") == 0) {
/* AXE Linux distribution - Inverto firmware */
Expand All @@ -526,7 +529,9 @@ satip_device_hack( satip_device_t *sd )
sd->sd_pids_deladd = 0;
tvhwarn("satip", "Detected old Inverto firmware V1.13.0.105 and less");
tvhwarn("satip", "Upgrade to V1.16.0.120 - http://http://www.inverto.tv/support/ - IDL400s");
} else if (strstr(sd->sd_info.location, ":8888/octonet.xml")) {
} else
#endif
if (strstr(sd->sd_info.location, ":8888/octonet.xml")) {
/* OctopusNet requires pids in the SETUP RTSP command */
sd->sd_pids0 = 1;
} else if (strstr(sd->sd_info.manufacturer, "Triax") &&
Expand Down

0 comments on commit 66d3b0b

Please sign in to comment.