diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2015-03-17 15:10:57 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2015-03-17 15:10:57 +0100 |
commit | 62596f991ebf30a61cdbe1de15acd2c63f598149 (patch) | |
tree | 2eeb04febf502fe7de88062ba193f52a6b07c89e /filter.h | |
parent | fd7ccc7627b08ab66122d644cb301aba42ae0c06 (diff) | |
download | vdr-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.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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); }; |