summaryrefslogtreecommitdiff
path: root/filter.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-01-05 14:30:31 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-01-05 14:30:31 +0100
commit2bf718b62f051c0f563fa8ad1d95351b68c5315b (patch)
treed3b44e5c439ba3458caf774dd239f57203ebf266 /filter.h
parent3f5c7e67eac370bfbc37b13779ebd7d9da3c2061 (diff)
downloadvdr-2bf718b62f051c0f563fa8ad1d95351b68c5315b.tar.gz
vdr-2bf718b62f051c0f563fa8ad1d95351b68c5315b.tar.bz2
Enhanced the SDT filter to handle multi part sections
Diffstat (limited to 'filter.h')
-rw-r--r--filter.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/filter.h b/filter.h
index 09703e02..1696e6e2 100644
--- a/filter.h
+++ b/filter.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: filter.h 1.1 2003/12/22 11:41:40 kls Exp $
+ * $Id: filter.h 1.2 2004/01/05 14:29:49 kls Exp $
*/
#ifndef __FILTER_H
@@ -13,6 +13,16 @@
#include <sys/types.h>
#include "tools.h"
+class cSectionSyncer {
+private:
+ int lastVersion;
+ bool synced;
+public:
+ cSectionSyncer(void);
+ void Reset(void);
+ bool Sync(uchar Version, int Number, int LastNumber);
+ };
+
class cFilterData : public cListObject {
public:
u_short pid;