diff options
Diffstat (limited to 'p2pvr/scanner/eitRows.h')
-rw-r--r-- | p2pvr/scanner/eitRows.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/p2pvr/scanner/eitRows.h b/p2pvr/scanner/eitRows.h index 255f52b..bc44568 100644 --- a/p2pvr/scanner/eitRows.h +++ b/p2pvr/scanner/eitRows.h @@ -25,6 +25,16 @@ class EitRows : public RowSet, DvbSiReaderHelper { RowAttribute resolveAttr(const Glib::ustring & attrName) const; private: + class SeenProgram { + public: + SeenProgram(int sid, int eid); + bool operator<(const SeenProgram &) const; + const int sid; + const int eid; + }; + typedef std::set<SeenProgram> SeenPrograms; + mutable SeenPrograms seenPrograms; + void filterInput(int fd) const; bool parseInfoTable(const u_char *data, size_t len, const RowProcessor *) const; void parseEventDescription(const u_char *data) const; |