aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb_ci/dvbci.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-11-29 23:32:01 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-11-29 23:32:01 +0000
commitd290a6895aaba9660184b2ac9c1bb90d81ae494c (patch)
tree0a6270e8e64112d08839814cb77bae8f48256090 /lib/dvb_ci/dvbci.cpp
parent1413b01974f156dc51c45a72256dc609cf4163f3 (diff)
downloadenigma2-d290a6895aaba9660184b2ac9c1bb90d81ae494c.tar.gz
enigma2-d290a6895aaba9660184b2ac9c1bb90d81ae494c.zip
fix resend capmt when ci is plugged into the slot
Diffstat (limited to 'lib/dvb_ci/dvbci.cpp')
-rw-r--r--lib/dvb_ci/dvbci.cpp56
1 files changed, 44 insertions, 12 deletions
diff --git a/lib/dvb_ci/dvbci.cpp b/lib/dvb_ci/dvbci.cpp
index 9a551df0..b15fcce3 100644
--- a/lib/dvb_ci/dvbci.cpp
+++ b/lib/dvb_ci/dvbci.cpp
@@ -83,22 +83,32 @@ int eDVBCIInterfaces::enableTS(int slotid, int enable)
if( (slot = getSlot(slotid)) == 0 )
return -1;
- if (enable)
+ return slot->enableTS(enable);
+}
+
+int eDVBCIInterfaces::initialize(int slotid)
+{
+ eDVBCISlot *slot;
+
+ if( (slot = getSlot(slotid)) == 0 )
+ return -1;
+
+ slot->resetPrevSentCAPMTVersion();
+ PMTHandlerList::iterator it = m_pmt_handlers.begin();
+ while (it != m_pmt_handlers.end())
{
- slot->resetPrevSentCAPMTVersion();
- PMTHandlerList::iterator it = m_pmt_handlers.begin();
- while (it != m_pmt_handlers.end())
+ if ( it->cislot == slot )
{
- if ( it->cislot == slot )
- slot->sendCAPMT(it->pmthandler); // send capmt
- ++it;
+ slot->sendCAPMT(it->pmthandler); // send capmt
+ break;
}
+ ++it;
}
- return slot->enableTS(enable);
+ return slot->initialize();
}
-int eDVBCIInterfaces::initialize(int slotid)
+int eDVBCIInterfaces::sendCAPMT(int slotid)
{
eDVBCISlot *slot;
@@ -110,11 +120,14 @@ int eDVBCIInterfaces::initialize(int slotid)
while (it != m_pmt_handlers.end())
{
if ( it->cislot == slot )
+ {
slot->sendCAPMT(it->pmthandler); // send capmt
+ return 0;
+ }
++it;
}
- return slot->initialize();
+ return -1;
}
int eDVBCIInterfaces::startMMI(int slotid)
@@ -213,7 +226,7 @@ void eDVBCIInterfaces::removePMTHandler(eDVBServicePMTHandler *pmthandler)
if (it != m_pmt_handlers.end())
{
eDVBCISlot *slot = it->cislot;
- eDVBServicePMTHandler *pmthandler = it->pmthandler;
+// eDVBServicePMTHandler *pmthandler = it->pmthandler;
m_pmt_handlers.erase(it);
if (slot && !--slot->use_count)
{
@@ -362,6 +375,21 @@ eDVBCISlot::~eDVBCISlot()
enableTS(0);
}
+void eDVBCISlot::setAppManager( eDVBCIApplicationManagerSession *session )
+{
+ application_manager=session;
+}
+
+void eDVBCISlot::setMMIManager( eDVBCIMMISession *session )
+{
+ mmi_session = session;
+}
+
+void eDVBCISlot::setCAManager( eDVBCICAManagerSession *session )
+{
+ ca_manager = session;
+}
+
int eDVBCISlot::getSlotID()
{
return slotid;
@@ -445,7 +473,7 @@ int eDVBCISlot::sendCAPMT(eDVBServicePMTHandler *pmthandler, const std::vector<u
eDebug("no ca_manager (no CI plugged?)");
return -1;
}
- const std::vector<uint16_t> &caids = ids.empty() && ca_manager ? ca_manager->getCAIDs() : ids;
+ const std::vector<uint16_t> &caids = ids.empty() ? ca_manager->getCAIDs() : ids;
ePtr<eTable<ProgramMapSection> > ptr;
if (pmthandler->getPMT(ptr))
return -1;
@@ -523,5 +551,9 @@ int eDVBCISlot::enableTS(int enable)
return 0;
}
+void eDVBCISlot::resendCAPMT()
+{
+ eDVBCIInterfaces::getInstance()->sendCAPMT(slotid);
+}
eAutoInitP0<eDVBCIInterfaces> init_eDVBCIInterfaces(eAutoInitNumbers::dvb, "CI Slots");