aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/esection.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-09-11 11:32:18 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-09-11 11:32:18 +0000
commite50156a91ed81be0b9b00b7bdaab60ee17130bf5 (patch)
treed80ac5809b9c8df9579c6a29a32fd3f78863cb59 /lib/dvb/esection.cpp
parent465b7a546fceb6eb038ba0c7fc08bb713c5559ef (diff)
downloadenigma2-e50156a91ed81be0b9b00b7bdaab60ee17130bf5.tar.gz
enigma2-e50156a91ed81be0b9b00b7bdaab60ee17130bf5.zip
add possibility to disable debug output
Diffstat (limited to 'lib/dvb/esection.cpp')
-rw-r--r--lib/dvb/esection.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/dvb/esection.cpp b/lib/dvb/esection.cpp
index d30aef46..8ec07901 100644
--- a/lib/dvb/esection.cpp
+++ b/lib/dvb/esection.cpp
@@ -37,7 +37,7 @@ void eGTable::sectionRead(const __u8 *d)
void eGTable::timeout()
{
- eDebug("timeout %04x!", m_table.pid);
+ TABLE_eDebug("timeout %04x!", m_table.pid);
if (m_reader)
{
m_reader->stop();
@@ -49,8 +49,8 @@ void eGTable::timeout()
tableReady(error);
}
-eGTable::eGTable():
- m_timeout(0), error(0)
+eGTable::eGTable(bool debug):
+ m_timeout(0), m_debug(debug), error(0)
{
}
@@ -103,28 +103,28 @@ RESULT eGTable::start(iDVBSectionReader *reader, const eDVBTableSpec &table)
if (!(m_table.flags & eDVBTableSpec::tfAnyVersion))
{
- eDebug("doing version filtering");
+ TABLE_eDebug("doing version filtering");
mask.data[3] |= (m_table.version << 1)|1;
mask.mask[3] |= 0x3f;
if (!(m_table.flags & eDVBTableSpec::tfThisVersion))
mask.mode[3] |= 0x3e; // negative filtering
} else
- eDebug("no version filtering");
-
- eDebug("%04x: %02x %02x %02x %02x %02x %02x",
+ TABLE_eDebug("no version filtering");
+
+ TABLE_eDebug("%04x: %02x %02x %02x %02x %02x %02x",
mask.pid,
mask.data[0], mask.data[1], mask.data[2],
mask.data[3], mask.data[4], mask.data[5]);
- eDebug("mask: %02x %02x %02x %02x %02x %02x",
+ TABLE_eDebug("mask: %02x %02x %02x %02x %02x %02x",
mask.mask[0], mask.mask[1], mask.mask[2],
mask.mask[3], mask.mask[4], mask.mask[5]);
- eDebug("mode: %02x %02x %02x %02x %02x %02x",
+ TABLE_eDebug("mode: %02x %02x %02x %02x %02x %02x",
mask.mode[0], mask.mode[1], mask.mode[2],
mask.mode[3], mask.mode[4], mask.mode[5]);
if ((res = m_reader->start(mask)))
{
- eDebug("reader failed to start.");
+ TABLE_eDebug("reader failed to start.");
return res;
}