diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-06-30 14:52:13 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-06-30 14:52:13 +0000 |
| commit | a33ff213255db7f59090f70235ec06c502e2a2ce (patch) | |
| tree | c8d42ff6b5002bd0f4575a20ce3c294b08c7139d /lib/dvb/esection.cpp | |
| parent | 62b8a649fcae500c983215fac2e5202916c0195f (diff) | |
| download | enigma2-a33ff213255db7f59090f70235ec06c502e2a2ce.tar.gz enigma2-a33ff213255db7f59090f70235ec06c502e2a2ce.zip | |
add dvb time handling with transponder time correction algo.. this use a rtc, when avail, mainloop changes for set linux time
Diffstat (limited to 'lib/dvb/esection.cpp')
| -rw-r--r-- | lib/dvb/esection.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/dvb/esection.cpp b/lib/dvb/esection.cpp index 6f634ae1..a80168b5 100644 --- a/lib/dvb/esection.cpp +++ b/lib/dvb/esection.cpp @@ -22,8 +22,7 @@ void eGTable::sectionRead(const __u8 *d) void eGTable::timeout() { - printf("timeout!\n"); -// eDebug("timeout!"); + eDebug("timeout!"); m_reader->stop(); ready = 1; error = -1; @@ -58,7 +57,7 @@ RESULT eGTable::start(iDVBSectionReader *reader, const eDVBTableSpec &table) if (m_table.flags & eDVBTableSpec::tfHaveTID) { mask.data[0] = m_table.tid; - mask.mask[0] = 0xFF; + mask.mask[0] = mask.pid == 0x14 ? 0xFC : 0xFF; } if (m_table.flags & eDVBTableSpec::tfHaveTIDExt) |
