X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/5cdabb1038ec3f628001f26f5d587eb95ca6465d..2d01fd232419dbb9edaf7eb42f587dc635d21d42:/lib/dvb/dvb.h diff --git a/lib/dvb/dvb.h b/lib/dvb/dvb.h index fcfbdfe7..6a9e6330 100644 --- a/lib/dvb/dvb.h +++ b/lib/dvb/dvb.h @@ -7,7 +7,6 @@ #include #include -class eDVBChannel; class eDVBChannel; /* we do NOT handle resource conflicts here. instead, the allocateChannel @@ -142,6 +141,8 @@ class eDVBResourceManager: public iObject Signal1 m_channelAdded; Signal1 m_channelRemoved; Signal1 m_channelRunning; + + bool canAllocateFrontend(ePtr &feparm); public: eDVBResourceManager(); virtual ~eDVBResourceManager(); @@ -156,7 +157,7 @@ public: errNoDemux = -2, errChidNotFound = -3 }; - + /* allocate channel... */ RESULT allocateChannel(const eDVBChannelID &channelid, eUsePtr &channel); RESULT allocateRawChannel(eUsePtr &channel, int frontend_index); @@ -165,6 +166,8 @@ public: RESULT connectChannelAdded(const Slot1 &channelAdded, ePtr &connection); RESULT connectChannelRemoved(const Slot1 &channelRemoved, ePtr &connection); RESULT connectChannelRunning(const Slot1 &channelRemoved, ePtr &connection); + + bool canAllocateChannel(const eDVBChannelID &channelid, const eDVBChannelID &ignore); }; class eFilePushThread; @@ -198,6 +201,7 @@ public: there is an unknown amount of buffers in between */ RESULT seekToPosition(iDVBDemux *decoding_demux, const off_t &off); + int getUseCount() { return m_use_count; } private: ePtr m_frontend; ePtr m_demux, m_decoder_demux;