X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fdvb%2Fdvb.h;h=6a9e6330097923be90a3e72507eef9cb4a102c93;hb=36940d42cf3cc58b40a5a6f5fe86bad50ff48ad7;hp=03702db26794989196abcf3fe38d64a02b6630ee;hpb=e768f7667ec5da0e331725de8a582365358cf7e3;p=vuplus_dvbapp diff --git a/lib/dvb/dvb.h b/lib/dvb/dvb.h index 03702db..6a9e633 100644 --- a/lib/dvb/dvb.h +++ b/lib/dvb/dvb.h @@ -8,7 +8,6 @@ #include class eDVBChannel; -class eDVBChannel; /* we do NOT handle resource conflicts here. instead, the allocateChannel fails, and the application has to see why the channel is allocated @@ -106,15 +105,16 @@ class eDVBResourceManager: public iObject void addAdapter(iDVBAdapter *adapter); - /* allocates a frontend able to tune to channelID "chid". + /* allocates a frontend able to tune to frontend paramters 'feperm'. the frontend must be tuned lateron. there is no guarante - that tuning will suceed - it just means that if this frontend + that tuning will succeed - it just means that if this frontend can't tune, no other frontend could do it. there might be a priority given to certain frontend/chid combinations. this will be evaluated here. */ - RESULT allocateFrontend(ePtr &feparm, ePtr &fe); + RESULT allocateFrontend(ePtr &fe, ePtr &feparm); + RESULT allocateFrontendByIndex(ePtr &fe, int index); /* allocate a demux able to filter on the selected frontend. */ RESULT allocateDemux(eDVBRegisteredFrontend *fe, ePtr &demux, int cap); @@ -141,6 +141,8 @@ class eDVBResourceManager: public iObject Signal1 m_channelAdded; Signal1 m_channelRemoved; Signal1 m_channelRunning; + + bool canAllocateFrontend(ePtr &feparm); public: eDVBResourceManager(); virtual ~eDVBResourceManager(); @@ -155,15 +157,17 @@ public: errNoDemux = -2, errChidNotFound = -3 }; - + /* allocate channel... */ RESULT allocateChannel(const eDVBChannelID &channelid, eUsePtr &channel); - RESULT allocateRawChannel(eUsePtr &channel); + RESULT allocateRawChannel(eUsePtr &channel, int frontend_index); RESULT allocatePVRChannel(eUsePtr &channel); 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; @@ -191,12 +195,13 @@ public: /* iDVBPVRChannel */ RESULT playFile(const char *file); RESULT getLength(pts_t &len); - RESULT getCurrentPosition(pts_t &pos); - RESULT seekTo(int relative, pts_t &pts); + RESULT getCurrentPosition(iDVBDemux *decoding_demux, pts_t &pos); + RESULT seekTo(iDVBDemux *decoding_demux, int relative, pts_t &pts); /* seeking to relative positions won't work - there is an unknown amount of buffers in between */ - RESULT seekToPosition(const off_t &off); + 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;