diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-03-13 10:35:38 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-03-13 10:35:38 +0100 |
commit | 4f6f05161e787bc05c38d5551cd2b47424f600cc (patch) | |
tree | db5d716561680b66558de191de17797766eace37 /pat.h | |
parent | 9c1f56ec71a68e945ff7315ae710f6f9f03e8cc8 (diff) | |
download | vdr-4f6f05161e787bc05c38d5551cd2b47424f600cc.tar.gz vdr-4f6f05161e787bc05c38d5551cd2b47424f600cc.tar.bz2 |
Taking the Sid into account when detecting version changes in processing the PMT
Diffstat (limited to 'pat.h')
-rw-r--r-- | pat.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4,13 +4,14 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: pat.h 1.3 2004/01/03 13:47:54 kls Exp $ + * $Id: pat.h 1.4 2004/03/07 16:22:01 kls Exp $ */ #ifndef __PAT_H #define __PAT_H #include "filter.h" +#include <stdint.h> #define MAXPMTENTRIES 64 @@ -19,9 +20,9 @@ private: time_t lastPmtScan; int pmtIndex; int pmtPid; - int pmtVersion[MAXPMTENTRIES]; + uint64_t pmtVersion[MAXPMTENTRIES]; int numPmtEntries; - bool PmtVersionChanged(int PmtPid, int Version); + bool PmtVersionChanged(int PmtPid, int Sid, int Version); protected: virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length); public: |