1
0
mirror of https://github.com/rofafor/vdr-plugin-iptv.git synced 2023-10-10 11:37:03 +00:00

Updated for vdr-1.7.4.

Fixed blacklisting of PAT section filter.
Set max IPTV device count to VDR's max devices.
This commit is contained in:
Rolf Ahrenberg
2009-02-24 13:40:16 +02:00
parent 00cf880a5d
commit 1e8f117988
6 changed files with 46 additions and 40 deletions

View File

@@ -226,7 +226,7 @@ void cIptvSectionFilter::ProcessData(const uint8_t* buf)
error("Not TS packet: 0x%X\n", buf[0]);
return;
}
// Stop if not the PID this filter is looking for
if (ts_pid(buf) != pid)
return;
@@ -240,7 +240,7 @@ void cIptvSectionFilter::ProcessData(const uint8_t* buf)
uint8_t cc = buf[3] & 0x0f;
int ccok = ((feedcc + 1) & 0x0f) == cc;
feedcc = cc;
feedcc = cc;
int dc_i = 0;
if (buf[3] & 0x20) {