diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-05-09 21:22:22 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-05-09 21:22:22 +0000 |
| commit | bf7eccb938f67b379494775d34d0312828e1c8bf (patch) | |
| tree | f8ac79e42b88b4ec3bb78c4239ff73743e90fc79 /lib/dvb/scan.cpp | |
| parent | 056f4ed60ae323f41601b8acdc42794902eac0d1 (diff) | |
| download | enigma2-bf7eccb938f67b379494775d34d0312828e1c8bf.tar.gz enigma2-bf7eccb938f67b379494775d34d0312828e1c8bf.zip | |
revert unneeded changes for sdt update
restructure code for better readability
add some comments
remove some debug output
Diffstat (limited to 'lib/dvb/scan.cpp')
| -rw-r--r-- | lib/dvb/scan.cpp | 37 |
1 files changed, 15 insertions, 22 deletions
diff --git a/lib/dvb/scan.cpp b/lib/dvb/scan.cpp index 17c6b5c2..ade63d8f 100644 --- a/lib/dvb/scan.cpp +++ b/lib/dvb/scan.cpp @@ -22,12 +22,10 @@ DEFINE_REF(eDVBScan); -eDVBScan::eDVBScan(iDVBChannel *channel): m_channel(channel) +eDVBScan::eDVBScan(iDVBChannel *channel) + :m_channel(channel), m_ready(0), m_flags(0), m_ready_all(readySDT) + ,m_channel_state(iDVBChannel::state_idle) { - m_ready = m_flags = 0; - m_ready_all = readySDT; - m_channel_state = iDVBChannel::state_idle; - if (m_channel->getDemux(m_demux)) SCAN_eDebug("scan: failed to allocate demux!"); m_channel->connectStateChange(slot(*this, &eDVBScan::stateChange), m_stateChanged_connection); @@ -102,10 +100,10 @@ RESULT eDVBScan::nextChannel() if (m_ch_toScan.empty()) { - SCAN_eDebug("no channels left to scan."); - SCAN_eDebug("%d channels scanned, %d were unavailable.", - m_ch_scanned.size(), m_ch_unavailable.size()); - SCAN_eDebug("%d channels in database.", m_new_channels.size()); +// SCAN_eDebug("no channels left to scan."); +// SCAN_eDebug("%d channels scanned, %d were unavailable.", +// m_ch_scanned.size(), m_ch_unavailable.size()); +// SCAN_eDebug("%d channels in database.", m_new_channels.size()); m_event(evtFinish); return -ENOENT; } @@ -257,13 +255,12 @@ void eDVBScan::channelDone() { unsigned long hash = 0; - ePtr<iDVBFrontendParameters> p = m_ch_current; - - if (!p) // used in sdt scan - m_channel->getCurrentFrontendParameters(p); - - p->getHash(hash); + // m_ch_current is not set, when eDVBScan is just used for a SDT update + if (!m_ch_current) + m_channel->getCurrentFrontendParameters(m_ch_current); + m_ch_current->getHash(hash); + eDVBNamespace dvbnamespace = buildNamespace( (**m_SDT->getSections().begin()).getOriginalNetworkId(), (**m_SDT->getSections().begin()).getTransportStreamId(), @@ -394,16 +391,12 @@ void eDVBScan::channelDone() here, and not before. */ - ePtr<iDVBFrontendParameters> p = m_ch_current; - if (!p) - m_channel->getCurrentFrontendParameters(p); - if (!m_chid_current) eWarning("SCAN: the current channel's ID was not corrected - not adding channel."); else - addKnownGoodChannel(m_chid_current, p); - - m_ch_scanned.push_back(p); + addKnownGoodChannel(m_chid_current, m_ch_current); + + m_ch_scanned.push_back(m_ch_current); nextChannel(); } |
