You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-plugins/vdr-iptv/files/vdr-iptv-0.0.7-vdr-1.4.diff

17 lines
727 B

Index: iptv-0.0.7/pidscanner.c
===================================================================
--- iptv-0.0.7.orig/pidscanner.c
+++ iptv-0.0.7/pidscanner.c
@@ -146,7 +146,11 @@ void cPidScanner::Process(const uint8_t*
for (unsigned int i = 0; i < MAXSPIDS; ++i)
Spids[i] = IptvChannel->Spid(i);
debug("cPidScanner::Process(): Vpid=0x%04X, Apid=0x%04X\n", Vpid, Apid);
+#if defined(APIVERSNUM) && APIVERSNUM < 10510
+ IptvChannel->SetPids(Vpid, Ppid, Apids, ALangs, Dpids, DLangs, Tpid);
+#else
IptvChannel->SetPids(Vpid, Ppid, Apids, ALangs, Dpids, DLangs, Spids, SLangs, Tpid);
+#endif
Channels.Unlock();
process = false;
}