summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmirl <schmirl>2008-03-13 14:10:17 +0000
committerschmirl <schmirl>2008-03-13 14:10:17 +0000
commite54f9e4fbe3062ed6fb63d0222a0587c9d236830 (patch)
tree5912535c82931ce1143d33b2cd3ae80ac75eb2ec
parentefeac825cc071e01b203eda2af3a28f5020c9f3e (diff)
downloadvdr-plugin-streamdev-e54f9e4fbe3062ed6fb63d0222a0587c9d236830.tar.gz
vdr-plugin-streamdev-e54f9e4fbe3062ed6fb63d0222a0587c9d236830.tar.bz2
Add EIT into TS stream (#442)
-rw-r--r--server/livestreamer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/livestreamer.c b/server/livestreamer.c
index fb5de5a..cd3c696 100644
--- a/server/livestreamer.c
+++ b/server/livestreamer.c
@@ -309,9 +309,9 @@ void cStreamdevPatFilter::Process(u_short Pid, u_char Tid, const u_char *Data, i
#if 0
pids[npids++] = 0x10; // pid 0x10, tid 0x40: NIT
pids[npids++] = 0x11; // pid 0x11, tid 0x42: SDT
- pids[npids++] = 0x12; // pid 0x12, tid 0x4E...0x6F: EIT
pids[npids++] = 0x14; // pid 0x14, tid 0x70: TDT
#endif
+ pids[npids++] = 0x12; // pid 0x12, tid 0x4E...0x6F: EIT
for (SI::Loop::Iterator it; pmt.streamLoop.getNext(stream, it); )
if (0 != (pids[npids] = GetPid(stream)) && npids < MAXRECEIVEPIDS)
npids++;