From 7398125f317987197b653638517f98f877511513 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Fri, 27 Jan 2006 15:53:08 +0100 Subject: Now checking whether the channel exists before setting the PMT filter in cPatFilter::Process() --- pat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pat.c') diff --git a/pat.c b/pat.c index 83031db4..a7216b8c 100644 --- a/pat.c +++ b/pat.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: pat.c 1.14 2005/09/04 14:32:39 kls Exp $ + * $Id: pat.c 1.15 2006/01/27 15:48:29 kls Exp $ */ #include "pat.h" @@ -287,7 +287,7 @@ void cPatFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length int Index = 0; for (SI::Loop::Iterator it; pat.associationLoop.getNext(assoc, it); ) { if (!assoc.isNITPid()) { - if (Index++ == pmtIndex) { + if (Index++ >= pmtIndex && Channels.GetByServiceID(Source(), Transponder(), assoc.getServiceId())) { pmtPid = assoc.getPid(); Add(pmtPid, 0x02); break; -- cgit v1.2.3