X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/465b7a546fceb6eb038ba0c7fc08bb713c5559ef..e50156a91ed81be0b9b00b7bdaab60ee17130bf5:/lib/dvb/esection.h?ds=sidebyside diff --git a/lib/dvb/esection.h b/lib/dvb/esection.h index 5dc84ec6..ae806652 100644 --- a/lib/dvb/esection.h +++ b/lib/dvb/esection.h @@ -4,6 +4,9 @@ #include #include +#define TABLE_eDebug(x...) do { if (m_debug) eDebug(x); } while(0) +#define TABLE_eDebugNoNewLine(x...) do { if (m_debug) eDebugNoNewLine(x); } while(0) + class eGTable: public iObject, public Object { DECLARE_REF(eGTable); @@ -18,10 +21,11 @@ class eGTable: public iObject, public Object void timeout(); ePtr m_sectionRead_conn; protected: + bool m_debug; virtual int createTable(unsigned int nr, const __u8 *data, unsigned int max)=0; public: Signal1 tableReady; - eGTable(); + eGTable(bool debug=true); RESULT start(iDVBSectionReader *reader, const eDVBTableSpec &table); RESULT start(iDVBDemux *reader, const eDVBTableSpec &table); RESULT getSpec(eDVBTableSpec &spec) { spec = m_table; return 0; } @@ -42,7 +46,7 @@ protected: unsigned int ssize = sections.size(); if (max < ssize || nr >= max) { - eDebug("kaputt max(%d) < ssize(%d) || nr(%d) >= max(%d)", + TABLE_eDebug("kaputt max(%d) < ssize(%d) || nr(%d) >= max(%d)", max, ssize, nr, max); return 0; } @@ -55,22 +59,22 @@ protected: for (unsigned int i = 0; i < max; ++i) if (avail.find(i) != avail.end()) - eDebugNoNewLine("+"); + TABLE_eDebugNoNewLine("+"); else - eDebugNoNewLine("-"); + TABLE_eDebugNoNewLine("-"); - eDebug(" %d/%d TID %02x", avail.size(), max, data[0]); + TABLE_eDebug(" %d/%d TID %02x", avail.size(), max, data[0]); if (avail.size() == max) { - eDebug("done!"); + TABLE_eDebug("done!"); return 1; } else return 0; } public: std::vector &getSections() { return sections; } - eTable(): eGTable() + eTable(bool debug=true): eGTable(debug) { } ~eTable()