X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ce8c818df531da2954eeeadd181c15706549b0a5..69725af53d310026a1d773f35f13b141269b3edc:/lib/dvb/esection.h diff --git a/lib/dvb/esection.h b/lib/dvb/esection.h index a5b4c90e..98d53b48 100644 --- a/lib/dvb/esection.h +++ b/lib/dvb/esection.h @@ -19,7 +19,7 @@ private: void timeout(); ePtr m_sectionRead_conn; protected: - virtual int createTable(int nr, const __u8 *data, unsigned int max)=0; + virtual int createTable(unsigned int nr, const __u8 *data, unsigned int max)=0; public: Signal1 tableReady; eGTable(); @@ -38,26 +38,33 @@ private: std::vector sections; std::set avail; protected: - int createTable(int nr, const __u8 *data, unsigned int max) + int createTable(unsigned int nr, const __u8 *data, unsigned int max) { + unsigned int ssize = sections.size(); + if (max < ssize || nr >= max) + { + eDebug("kaputt max(%d) < ssize(%d) || nr(%d) >= max(%d)", + max, ssize, nr, max); + return 0; + } if (avail.find(nr) != avail.end()) delete sections[nr]; + sections.resize(max); - sections[nr] = new Section(data); avail.insert(nr); for (unsigned int i = 0; i < max; ++i) if (avail.find(i) != avail.end()) - printf("+"); + eDebugNoNewLine("+"); else - printf("-"); + eDebugNoNewLine("-"); - printf(" %d/%d TID %02x\n", avail.size(), max, data[0]); + eDebug(" %d/%d TID %02x", avail.size(), max, data[0]); if (avail.size() == max) { - printf("done!\n"); + eDebug("done!"); return 1; } else return 0; @@ -69,8 +76,8 @@ public: } ~eTable() { - for (typename std::vector::iterator i(sections.begin()); i != sections.end(); ++i) - delete *i; + for (std::set::iterator i(avail.begin()); i != avail.end(); ++i) + delete sections[*i]; } }; @@ -98,7 +105,13 @@ public: ~eAUTable() { - current=next=0; + stop(); + } + + void stop() + { + current = next = 0; + m_demux = 0; } int begin(eMainloop *m, const eDVBTableSpec &spec, ePtr demux)