X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/2d58228b7b63d5445ffd9b5fef92ac46dbd0b904..2c8c2343f6fe05e59a8633b24d565e0fff5c6a3d:/lib/dvb/dvb.cpp diff --git a/lib/dvb/dvb.cpp b/lib/dvb/dvb.cpp index 364787ac..8af8bb0e 100644 --- a/lib/dvb/dvb.cpp +++ b/lib/dvb/dvb.cpp @@ -304,7 +304,7 @@ RESULT eDVBResourceManager::allocateChannel(const eDVBChannelID &channelid, eUse if(channelid==cache_chan->getChannelID()) { eDebug("use cached_channel"); - channel=m_cached_channel; + channel = m_cached_channel; return 0; } m_cached_channel=0; @@ -591,16 +591,16 @@ void eDVBChannel::frontendStateChanged(iDVBFrontend*fe) ourstate = state_tuning; } else if (state == iDVBFrontend::stateLostLock) { + /* on managed channels, we try to retune in order to re-acquire lock. */ if (m_feparm) { - eDebug("OURSTATE: lost lock.. retune"); + eDebug("OURSTATE: lost lock, trying to retune"); ourstate = state_tuning; m_frontend->get().tune(*m_feparm); - } - else // this case happens in scan.. in scan setChannel is not used .. so m_feparm is NULL - // but its okay.. in scan we dont like to retune + } else + /* on unmanaged channels, we don't do this. the client will do this. */ { - eDebug("OURSTATE: lost lock.. but no feparm avail.. set state_unavailable"); + eDebug("OURSTATE: lost lock, unavailable now."); ourstate = state_unavailable; } } else if (state == iDVBFrontend::stateFailed)