X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/b6592b47fa1932132a67a3beabcce7c96856d211..0feaed7d905b121804110148aa33e1ff479088e3:/lib/dvb/dvbtime.cpp diff --git a/lib/dvb/dvbtime.cpp b/lib/dvb/dvbtime.cpp index bfc2c870..dc98a6d3 100644 --- a/lib/dvb/dvbtime.cpp +++ b/lib/dvb/dvbtime.cpp @@ -212,7 +212,7 @@ void eDVBLocalTimeHandler::updateTime( time_t tp_time, eDVBChannel *chan ) settimeofday(&tnow,0); for (ePtrList::iterator it(eMainloop::existing_loops) ;it != eMainloop::existing_loops.end(); ++it) - it->setTimerOffset(m_time_difference); + it->addTimeOffset(m_time_difference); m_time_difference=0; } else if ( !m_time_difference ) @@ -333,7 +333,7 @@ void eDVBLocalTimeHandler::updateTime( time_t tp_time, eDVBChannel *chan ) settimeofday(&tnow,0); for (ePtrList::iterator it(eMainloop::existing_loops) ;it != eMainloop::existing_loops.end(); ++it) - it->setTimerOffset(m_time_difference); + it->addTimeOffset(m_time_difference); m_time_difference=0; } @@ -357,7 +357,7 @@ void eDVBLocalTimeHandler::DVBChannelAdded(eDVBChannel *chan) { if ( chan ) { - eDebug("[eDVBLocalTimerHandler] add channel %p", chan); +// eDebug("[eDVBLocalTimerHandler] add channel %p", chan); std::pair::iterator, bool> tmp = m_knownChannels.insert( std::pair(chan, channel_data()) ); tmp.first->second.tdt = new TDT(chan); @@ -376,12 +376,6 @@ void eDVBLocalTimeHandler::DVBChannelStateChanged(iDVBChannel *chan) chan->getState(state); switch (state) { - case iDVBChannel::state_idle: - break; - case iDVBChannel::state_tuning: - break; - case iDVBChannel::state_unavailable: - break; case iDVBChannel::state_ok: eDebug("[eDVBLocalTimerHandler] channel %p running", chan); it->second.tdt->start();