summaryrefslogtreecommitdiff
path: root/sdt.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2014-03-10 14:50:58 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2014-03-10 14:50:58 +0100
commitc5071cc87b5d5bf4cf6c685a45a8e69f9f36f5ae (patch)
tree05c1cda788d3e3b83546631cdbfa4b635523c896 /sdt.h
parent0990c279c74e498b2033b254c646f859b538b83a (diff)
downloadvdr-c5071cc87b5d5bf4cf6c685a45a8e69f9f36f5ae.tar.gz
vdr-c5071cc87b5d5bf4cf6c685a45a8e69f9f36f5ae.tar.bz2
The SDT is now only parsed *after* the NIT has been read
Diffstat (limited to 'sdt.h')
-rw-r--r--sdt.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sdt.h b/sdt.h
index a427119c..01653f45 100644
--- a/sdt.h
+++ b/sdt.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: sdt.h 1.2 2004/01/05 14:30:14 kls Exp $
+ * $Id: sdt.h 3.1 2014/03/10 14:40:54 kls Exp $
*/
#ifndef __SDT_H
@@ -15,13 +15,16 @@
class cSdtFilter : public cFilter {
private:
+ cMutex mutex;
cSectionSyncer sectionSyncer;
+ int source;
cPatFilter *patFilter;
protected:
virtual void Process(u_short Pid, u_char Tid, const u_char *Data, int Length);
public:
cSdtFilter(cPatFilter *PatFilter);
virtual void SetStatus(bool On);
+ void Trigger(int Source);
};
#endif //__SDT_H