summaryrefslogtreecommitdiff
path: root/filter.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-03-17 15:10:57 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2015-03-17 15:10:57 +0100
commit62596f991ebf30a61cdbe1de15acd2c63f598149 (patch)
tree2eeb04febf502fe7de88062ba193f52a6b07c89e /filter.h
parentfd7ccc7627b08ab66122d644cb301aba42ae0c06 (diff)
downloadvdr-62596f991ebf30a61cdbe1de15acd2c63f598149.tar.gz
vdr-62596f991ebf30a61cdbe1de15acd2c63f598149.tar.bz2
Improved syncing on sections when parsing the NIT and SDT
Diffstat (limited to 'filter.h')
-rw-r--r--filter.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/filter.h b/filter.h
index 9bd163fe..282a1e90 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.3 2004/01/11 13:31:59 kls Exp $
+ * $Id: filter.h 4.1 2015/03/17 15:00:08 kls Exp $
*/
#ifndef __FILTER_H
@@ -16,10 +16,12 @@
class cSectionSyncer {
private:
int lastVersion;
- bool synced;
+ int thisVersion;
+ int nextNumber;
public:
cSectionSyncer(void);
void Reset(void);
+ void Repeat(void);
bool Sync(uchar Version, int Number, int LastNumber);
};