mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 18:31:12 +02:00
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:
@@ -399,7 +399,7 @@ record_error_msg_t CRecordInstance::Record()
|
||||
CEPGData epgData;
|
||||
epgData.epg_times.startzeit = 0;
|
||||
epgData.epg_times.dauer = 0;
|
||||
if (CEitManager::getInstance()->getActualEPGServiceKey(channel_id&0xFFFFFFFFFFFFULL, &epgData )) {
|
||||
if (CEitManager::getInstance()->getActualEPGServiceKey(channel_id, &epgData )) {
|
||||
g_Timerd->getRecordingSafety(pre, post);
|
||||
if (epgData.epg_times.startzeit > 0)
|
||||
record_end = epgData.epg_times.startzeit + epgData.epg_times.dauer + post;
|
||||
@@ -799,7 +799,7 @@ bool CRecordManager::Record(const t_channel_id channel_id, const char * dir, boo
|
||||
|
||||
eventinfo.eventID = 0;
|
||||
eventinfo.channel_id = channel_id;
|
||||
if (CEitManager::getInstance()->getActualEPGServiceKey(channel_id&0xFFFFFFFFFFFFULL, &epgData )) {
|
||||
if (CEitManager::getInstance()->getActualEPGServiceKey(channel_id, &epgData )) {
|
||||
eventinfo.epgID = epgData.eventID;
|
||||
eventinfo.epg_starttime = epgData.epg_times.startzeit;
|
||||
strncpy(eventinfo.epgTitle, epgData.title.c_str(), EPG_TITLE_MAXLEN-1);
|
||||
|
@@ -369,7 +369,7 @@ void CScreenShot::MakeFileName(const t_channel_id channel_id)
|
||||
}
|
||||
pos = strlen(fname);
|
||||
|
||||
if(CEitManager::getInstance()->getActualEPGServiceKey(channel_id&0xFFFFFFFFFFFFULL, &epgData)) {
|
||||
if(CEitManager::getInstance()->getActualEPGServiceKey(channel_id, &epgData)) {
|
||||
CShortEPGData epgdata;
|
||||
if(CEitManager::getInstance()->getEPGidShort(epgData.eventID, &epgdata)) {
|
||||
if (!(epgdata.title.empty())) {
|
||||
|
Reference in New Issue
Block a user