remove channel_id mask for CEitManager getXXX calls

This commit is contained in:
[CST] Focus
2012-08-30 14:50:01 +04:00
parent 8d02122425
commit 3f5a0e5bb1
10 changed files with 19 additions and 19 deletions

View File

@@ -1220,7 +1220,7 @@ void CTimerEvent_Record::getEpgId()
{
//TODO: Record/Zapto getEpgId code almost identical !
CChannelEventList evtlist;
CEitManager::getInstance()->getEventsServiceKey(eventInfo.channel_id &0xFFFFFFFFFFFFULL, evtlist);
CEitManager::getInstance()->getEventsServiceKey(eventInfo.channel_id, evtlist);
// we check for a time in the middle of the recording
time_t check_time=alarmTime/2 + stopTime/2;
for ( CChannelEventList::iterator e= evtlist.begin(); e != evtlist.end(); ++e )
@@ -1268,7 +1268,7 @@ void CTimerEvent_Zapto::getEpgId()
{
//TODO: Record/Zapto getEpgId code almost identical !
CChannelEventList evtlist;
CEitManager::getInstance()->getEventsServiceKey(eventInfo.channel_id &0xFFFFFFFFFFFFULL, evtlist);
CEitManager::getInstance()->getEventsServiceKey(eventInfo.channel_id, evtlist);
// we check for a time 5 min after zap
time_t check_time=alarmTime + 300;
for ( CChannelEventList::iterator e= evtlist.begin(); e != evtlist.end(); ++e )