remove channel_id mask for CEitManager getXXX calls

Origin commit data
------------------
Branch: ni/coolstream
Commit: 3f5a0e5bb1
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-08-30 (Thu, 30 Aug 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2012-08-30 14:50:01 +04:00
parent d6eb44696b
commit 96148052c5
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 )